diff options
| author | Anton Vorontsov <[email protected]> | 2010-05-18 21:49:51 +0200 |
|---|---|---|
| committer | Anton Vorontsov <[email protected]> | 2010-05-19 12:14:28 +0400 |
| commit | 5f487cd34f4337f9bc27ca19da72a39d1b0a0ab4 (patch) | |
| tree | f3204e0cf64a7202c42d1f397fd978ccd61f8225 /include/linux | |
| parent | a1e50fd4452b2ed57376ece465a17276b59fad9c (diff) | |
power_supply: Use attribute groups
This fixes a race between power supply device and initial
attributes creation, plus makes it possible to implement
writable properties.
[Daniel Mack - removed superflous return statement
and dropped .mode attribute from POWER_SUPPLY_ATTR]
Suggested-by: Greg KH <[email protected]>
Suggested-by: Kay Sievers <[email protected]>
Signed-off-by: Anton Vorontsov <[email protected]>
Tested-by: Daniel Mack <[email protected]>
Diffstat (limited to 'include/linux')
| -rw-r--r-- | include/linux/power_supply.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/power_supply.h b/include/linux/power_supply.h index ebd2b8fb00d0..c5f73a3ab3ab 100644 --- a/include/linux/power_supply.h +++ b/include/linux/power_supply.h @@ -114,6 +114,7 @@ enum power_supply_property { POWER_SUPPLY_PROP_TIME_TO_EMPTY_AVG, POWER_SUPPLY_PROP_TIME_TO_FULL_NOW, POWER_SUPPLY_PROP_TIME_TO_FULL_AVG, + POWER_SUPPLY_PROP_TYPE, /* use power_supply.type instead */ /* Properties of type `const char *' */ POWER_SUPPLY_PROP_MODEL_NAME, POWER_SUPPLY_PROP_MANUFACTURER, |