diff options
author | Sebastian Reichel <sre@debian.org> | 2013-11-24 11:49:29 -0500 |
---|---|---|
committer | Anton Vorontsov <anton@enomsg.org> | 2013-12-23 21:21:11 -0500 |
commit | abce97708a9b5ba897ad94fa289804d8af8d3ea9 (patch) | |
tree | 130cb8a31d312f755b0f26303218b377863c3b7c /include/linux/power_supply.h | |
parent | 32260308b4cafcd71b1c0aac35675dc68120c33d (diff) |
power_supply: Add power_supply_get_by_phandle
Add method to get power supply by device tree phandle.
Signed-off-by: Sebastian Reichel <sre@debian.org>
Reviewed-by: Pavel Machek <pavel@ucw.cz>
Signed-off-by: Anton Vorontsov <anton@enomsg.org>
Diffstat (limited to 'include/linux/power_supply.h')
-rw-r--r-- | include/linux/power_supply.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/include/linux/power_supply.h b/include/linux/power_supply.h index 3e28fe188d17..c9dc4e09854c 100644 --- a/include/linux/power_supply.h +++ b/include/linux/power_supply.h | |||
@@ -244,6 +244,14 @@ extern struct atomic_notifier_head power_supply_notifier; | |||
244 | extern int power_supply_reg_notifier(struct notifier_block *nb); | 244 | extern int power_supply_reg_notifier(struct notifier_block *nb); |
245 | extern void power_supply_unreg_notifier(struct notifier_block *nb); | 245 | extern void power_supply_unreg_notifier(struct notifier_block *nb); |
246 | extern struct power_supply *power_supply_get_by_name(const char *name); | 246 | extern struct power_supply *power_supply_get_by_name(const char *name); |
247 | #ifdef CONFIG_OF | ||
248 | extern struct power_supply *power_supply_get_by_phandle(struct device_node *np, | ||
249 | const char *property); | ||
250 | #else /* !CONFIG_OF */ | ||
251 | static inline struct power_supply * | ||
252 | power_supply_get_by_phandle(struct device_node *np, const char *property) | ||
253 | { return NULL; } | ||
254 | #endif /* CONFIG_OF */ | ||
247 | extern void power_supply_changed(struct power_supply *psy); | 255 | extern void power_supply_changed(struct power_supply *psy); |
248 | extern int power_supply_am_i_supplied(struct power_supply *psy); | 256 | extern int power_supply_am_i_supplied(struct power_supply *psy); |
249 | extern int power_supply_set_battery_charged(struct power_supply *psy); | 257 | extern int power_supply_set_battery_charged(struct power_supply *psy); |