aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/linux/power_supply.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/include/linux/power_supply.h b/include/linux/power_supply.h
index 594c494ac3f0..0ab6aa171241 100644
--- a/include/linux/power_supply.h
+++ b/include/linux/power_supply.h
@@ -58,6 +58,15 @@ enum {
58 POWER_SUPPLY_TECHNOLOGY_LiMn, 58 POWER_SUPPLY_TECHNOLOGY_LiMn,
59}; 59};
60 60
61enum {
62 POWER_SUPPLY_CAPACITY_LEVEL_UNKNOWN = 0,
63 POWER_SUPPLY_CAPACITY_LEVEL_CRITICAL,
64 POWER_SUPPLY_CAPACITY_LEVEL_LOW,
65 POWER_SUPPLY_CAPACITY_LEVEL_NORMAL,
66 POWER_SUPPLY_CAPACITY_LEVEL_HIGH,
67 POWER_SUPPLY_CAPACITY_LEVEL_FULL,
68};
69
61enum power_supply_property { 70enum power_supply_property {
62 /* Properties of type `int' */ 71 /* Properties of type `int' */
63 POWER_SUPPLY_PROP_STATUS = 0, 72 POWER_SUPPLY_PROP_STATUS = 0,
@@ -89,6 +98,7 @@ enum power_supply_property {
89 POWER_SUPPLY_PROP_ENERGY_NOW, 98 POWER_SUPPLY_PROP_ENERGY_NOW,
90 POWER_SUPPLY_PROP_ENERGY_AVG, 99 POWER_SUPPLY_PROP_ENERGY_AVG,
91 POWER_SUPPLY_PROP_CAPACITY, /* in percents! */ 100 POWER_SUPPLY_PROP_CAPACITY, /* in percents! */
101 POWER_SUPPLY_PROP_CAPACITY_LEVEL,
92 POWER_SUPPLY_PROP_TEMP, 102 POWER_SUPPLY_PROP_TEMP,
93 POWER_SUPPLY_PROP_TEMP_AMBIENT, 103 POWER_SUPPLY_PROP_TEMP_AMBIENT,
94 POWER_SUPPLY_PROP_TIME_TO_EMPTY_NOW, 104 POWER_SUPPLY_PROP_TIME_TO_EMPTY_NOW,