diff options
author | Dmitry Baryshkov <dbaryshkov@gmail.com> | 2008-01-06 20:12:41 -0500 |
---|---|---|
committer | Anton Vorontsov <cbouatmailru@gmail.com> | 2008-02-01 18:43:00 -0500 |
commit | c7cc930f9a5c26385a08cd7dc28cb5e3ed186d72 (patch) | |
tree | 14c7d2360d4f0d11bed99ecf41a18d2048f34cea /drivers/power | |
parent | 9ef45106261e802f9d80bf0bc652124b42b1f344 (diff) |
power_supply: add few more values and props
Add LiMn (one of the most common for small non-rechargable batteries)
battery technology and voltage_min/_max properties support.
Signed-off-by: Dmitry Baryshkov <dbaryshkov@gmail.com>
Signed-off-by: Anton Vorontsov <cbou@mail.ru>
Diffstat (limited to 'drivers/power')
-rw-r--r-- | drivers/power/power_supply_sysfs.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/drivers/power/power_supply_sysfs.c b/drivers/power/power_supply_sysfs.c index bab591ba785a..d4824840c5bf 100644 --- a/drivers/power/power_supply_sysfs.c +++ b/drivers/power/power_supply_sysfs.c | |||
@@ -48,7 +48,8 @@ static ssize_t power_supply_show_property(struct device *dev, | |||
48 | "Unspecified failure" | 48 | "Unspecified failure" |
49 | }; | 49 | }; |
50 | static char *technology_text[] = { | 50 | static char *technology_text[] = { |
51 | "Unknown", "NiMH", "Li-ion", "Li-poly", "LiFe", "NiCd" | 51 | "Unknown", "NiMH", "Li-ion", "Li-poly", "LiFe", "NiCd", |
52 | "LiMn" | ||
52 | }; | 53 | }; |
53 | ssize_t ret; | 54 | ssize_t ret; |
54 | struct power_supply *psy = dev_get_drvdata(dev); | 55 | struct power_supply *psy = dev_get_drvdata(dev); |
@@ -84,6 +85,8 @@ static struct device_attribute power_supply_attrs[] = { | |||
84 | POWER_SUPPLY_ATTR(present), | 85 | POWER_SUPPLY_ATTR(present), |
85 | POWER_SUPPLY_ATTR(online), | 86 | POWER_SUPPLY_ATTR(online), |
86 | POWER_SUPPLY_ATTR(technology), | 87 | POWER_SUPPLY_ATTR(technology), |
88 | POWER_SUPPLY_ATTR(voltage_max), | ||
89 | POWER_SUPPLY_ATTR(voltage_min), | ||
87 | POWER_SUPPLY_ATTR(voltage_max_design), | 90 | POWER_SUPPLY_ATTR(voltage_max_design), |
88 | POWER_SUPPLY_ATTR(voltage_min_design), | 91 | POWER_SUPPLY_ATTR(voltage_min_design), |
89 | POWER_SUPPLY_ATTR(voltage_now), | 92 | POWER_SUPPLY_ATTR(voltage_now), |