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.31-rc5 26 lines 483 B view raw
1#ifndef _LINUX_WM97XX_BAT_H 2#define _LINUX_WM97XX_BAT_H 3 4#include <linux/wm97xx.h> 5 6struct wm97xx_batt_info { 7 int batt_aux; 8 int temp_aux; 9 int charge_gpio; 10 int min_voltage; 11 int max_voltage; 12 int batt_div; 13 int batt_mult; 14 int temp_div; 15 int temp_mult; 16 int batt_tech; 17 char *batt_name; 18}; 19 20#ifdef CONFIG_BATTERY_WM97XX 21void __init wm97xx_bat_set_pdata(struct wm97xx_batt_info *data); 22#else 23static inline void wm97xx_bat_set_pdata(struct wm97xx_batt_info *data) {} 24#endif 25 26#endif