aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/power_supply.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/linux/power_supply.h')
-rw-r--r--include/linux/power_supply.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/linux/power_supply.h b/include/linux/power_supply.h
index 4c7c6fc3548..b5d096d3a9b 100644
--- a/include/linux/power_supply.h
+++ b/include/linux/power_supply.h
@@ -144,6 +144,7 @@ struct power_supply {
144 enum power_supply_property psp, 144 enum power_supply_property psp,
145 union power_supply_propval *val); 145 union power_supply_propval *val);
146 void (*external_power_changed)(struct power_supply *psy); 146 void (*external_power_changed)(struct power_supply *psy);
147 void (*set_charged)(struct power_supply *psy);
147 148
148 /* For APM emulation, think legacy userspace. */ 149 /* For APM emulation, think legacy userspace. */
149 int use_for_apm; 150 int use_for_apm;
@@ -183,8 +184,10 @@ struct power_supply_info {
183 int use_for_apm; 184 int use_for_apm;
184}; 185};
185 186
187extern struct power_supply *power_supply_get_by_name(char *name);
186extern void power_supply_changed(struct power_supply *psy); 188extern void power_supply_changed(struct power_supply *psy);
187extern int power_supply_am_i_supplied(struct power_supply *psy); 189extern int power_supply_am_i_supplied(struct power_supply *psy);
190extern int power_supply_set_battery_charged(struct power_supply *psy);
188 191
189#if defined(CONFIG_POWER_SUPPLY) || defined(CONFIG_POWER_SUPPLY_MODULE) 192#if defined(CONFIG_POWER_SUPPLY) || defined(CONFIG_POWER_SUPPLY_MODULE)
190extern int power_supply_is_system_supplied(void); 193extern int power_supply_is_system_supplied(void);