|
@@ -51,6 +51,9 @@ static ssize_t power_supply_show_property(struct device *dev,
|
|
|
"Unknown", "NiMH", "Li-ion", "Li-poly", "LiFe", "NiCd",
|
|
|
"LiMn"
|
|
|
};
|
|
|
+ static char *capacity_level_text[] = {
|
|
|
+ "Unknown", "Critical", "Low", "Normal", "High", "Full"
|
|
|
+ };
|
|
|
ssize_t ret;
|
|
|
struct power_supply *psy = dev_get_drvdata(dev);
|
|
|
const ptrdiff_t off = attr - power_supply_attrs;
|
|
@@ -71,6 +74,8 @@ static ssize_t power_supply_show_property(struct device *dev,
|
|
|
return sprintf(buf, "%s\n", health_text[value.intval]);
|
|
|
else if (off == POWER_SUPPLY_PROP_TECHNOLOGY)
|
|
|
return sprintf(buf, "%s\n", technology_text[value.intval]);
|
|
|
+ else if (off == POWER_SUPPLY_PROP_CAPACITY_LEVEL)
|
|
|
+ return sprintf(buf, "%s\n", capacity_level_text[value.intval]);
|
|
|
else if (off >= POWER_SUPPLY_PROP_MODEL_NAME)
|
|
|
return sprintf(buf, "%s\n", value.strval);
|
|
|
|
|
@@ -109,6 +114,7 @@ static struct device_attribute power_supply_attrs[] = {
|
|
|
POWER_SUPPLY_ATTR(energy_now),
|
|
|
POWER_SUPPLY_ATTR(energy_avg),
|
|
|
POWER_SUPPLY_ATTR(capacity),
|
|
|
+ POWER_SUPPLY_ATTR(capacity_level),
|
|
|
POWER_SUPPLY_ATTR(temp),
|
|
|
POWER_SUPPLY_ATTR(temp_ambient),
|
|
|
POWER_SUPPLY_ATTR(time_to_empty_now),
|