Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v2.6.35-rc5 16 lines 374 B view raw
1#ifndef _LINUX_WM97XX_BAT_H 2#define _LINUX_WM97XX_BAT_H 3 4#include <linux/wm97xx.h> 5 6#warning This file will be removed soon, use wm97xx.h instead! 7 8#define wm97xx_batt_info wm97xx_batt_pdata 9 10#ifdef CONFIG_BATTERY_WM97XX 11void wm97xx_bat_set_pdata(struct wm97xx_batt_info *data); 12#else 13static inline void wm97xx_bat_set_pdata(struct wm97xx_batt_info *data) {} 14#endif 15 16#endif