diff options
author | Paul Parsons <lost.distance@yahoo.com> | 2011-11-23 17:37:15 -0500 |
---|---|---|
committer | Anton Vorontsov <cbouatmailru@gmail.com> | 2011-11-25 18:41:47 -0500 |
commit | 86e6c6bd9b70260fc5bc9fdfa2e5b4dfd8fe545c (patch) | |
tree | 36e46a0d74017fadaf09feda9fa2d79dd5915f14 | |
parent | 3b176b25a8146673ade4772d1edfe318caa6818a (diff) |
ds2760_battery: Add rated capacity of the hx4700 3600mAh battery
Add rated capacity of the HP iPAQ hx4700 3.7V 3600mAh (359114-001)
battery. For this battery the value of the rated capacity EEPROM
register at 0x32 is 14; thus rated_capacities[14] = 3600.
Signed-off-by: Paul Parsons <lost.distance@yahoo.com>
Signed-off-by: Anton Vorontsov <cbouatmailru@gmail.com>
-rw-r--r-- | drivers/power/ds2760_battery.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/drivers/power/ds2760_battery.c b/drivers/power/ds2760_battery.c index f2c9cc33c0f9..cda03dae75f4 100644 --- a/drivers/power/ds2760_battery.c +++ b/drivers/power/ds2760_battery.c | |||
@@ -95,7 +95,11 @@ static int rated_capacities[] = { | |||
95 | 2880, /* Samsung */ | 95 | 2880, /* Samsung */ |
96 | 2880, /* BYD */ | 96 | 2880, /* BYD */ |
97 | 2880, /* Lishen */ | 97 | 2880, /* Lishen */ |
98 | 2880 /* NEC */ | 98 | 2880, /* NEC */ |
99 | #ifdef CONFIG_MACH_H4700 | ||
100 | 0, | ||
101 | 3600, /* HP iPAQ hx4700 3.7V 3600mAh (359114-001) */ | ||
102 | #endif | ||
99 | }; | 103 | }; |
100 | 104 | ||
101 | /* array is level at temps 0°C, 10°C, 20°C, 30°C, 40°C | 105 | /* array is level at temps 0°C, 10°C, 20°C, 30°C, 40°C |