diff options
author | Michel JAOUEN <michel.jaouen@stericsson.com> | 2012-04-26 04:00:04 -0400 |
---|---|---|
committer | Lee Jones <lee.jones@linaro.org> | 2013-01-23 06:33:02 -0500 |
commit | 01ec8c5423901c4fe8d97f786ed9a0c31215b53a (patch) | |
tree | 51e12bce93f8d030f7896a7df8dc5a66ec052d3f /include/linux/mfd/abx500/ux500_chargalg.h | |
parent | 8fd526fd18233887ba652079a369f4eee0de9d9d (diff) |
pm2301: Provide u9540 support for the pm2301 charger
AC charger driver for the DB9540 based platforms.
Signed-off-by: Rajkumar Kasirajan <rajkumar.kasirajan@stericsson.com>
Signed-off-by: Loic Pallardy <loic.pallardy@stericsson.com>
Signed-off-by: Lee Jones <lee.jones@linaro.org>
Reviewed-by: Michel JAOUEN <michel.jaouen@stericsson.com>
Tested-by: Michel JAOUEN <michel.jaouen@stericsson.com>
Diffstat (limited to 'include/linux/mfd/abx500/ux500_chargalg.h')
-rw-r--r-- | include/linux/mfd/abx500/ux500_chargalg.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/linux/mfd/abx500/ux500_chargalg.h b/include/linux/mfd/abx500/ux500_chargalg.h index 9b07725750c9..5b77a610c6b6 100644 --- a/include/linux/mfd/abx500/ux500_chargalg.h +++ b/include/linux/mfd/abx500/ux500_chargalg.h | |||
@@ -27,12 +27,14 @@ struct ux500_charger_ops { | |||
27 | * @ops ux500 charger operations | 27 | * @ops ux500 charger operations |
28 | * @max_out_volt maximum output charger voltage in mV | 28 | * @max_out_volt maximum output charger voltage in mV |
29 | * @max_out_curr maximum output charger current in mA | 29 | * @max_out_curr maximum output charger current in mA |
30 | * @enabled indicates if this charger is used or not | ||
30 | */ | 31 | */ |
31 | struct ux500_charger { | 32 | struct ux500_charger { |
32 | struct power_supply psy; | 33 | struct power_supply psy; |
33 | struct ux500_charger_ops ops; | 34 | struct ux500_charger_ops ops; |
34 | int max_out_volt; | 35 | int max_out_volt; |
35 | int max_out_curr; | 36 | int max_out_curr; |
37 | bool enabled; | ||
36 | }; | 38 | }; |
37 | 39 | ||
38 | #endif | 40 | #endif |