diff options
Diffstat (limited to 'include/linux/mfd')
-rw-r--r-- | include/linux/mfd/abx500/ux500_chargalg.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/linux/mfd/abx500/ux500_chargalg.h b/include/linux/mfd/abx500/ux500_chargalg.h index 5b77a610c6b6..d43ac0f35526 100644 --- a/include/linux/mfd/abx500/ux500_chargalg.h +++ b/include/linux/mfd/abx500/ux500_chargalg.h | |||
@@ -28,13 +28,16 @@ struct ux500_charger_ops { | |||
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 | * @enabled indicates if this charger is used or not |
31 | * @external external charger unit (pm2xxx) | ||
31 | */ | 32 | */ |
32 | struct ux500_charger { | 33 | struct ux500_charger { |
33 | struct power_supply psy; | 34 | struct power_supply psy; |
34 | struct ux500_charger_ops ops; | 35 | struct ux500_charger_ops ops; |
35 | int max_out_volt; | 36 | int max_out_volt; |
36 | int max_out_curr; | 37 | int max_out_curr; |
38 | int wdt_refresh; | ||
37 | bool enabled; | 39 | bool enabled; |
40 | bool external; | ||
38 | }; | 41 | }; |
39 | 42 | ||
40 | #endif | 43 | #endif |