power: supply: olpc_battery: fix the power supply name
The framework is unhappy about them, because it uses the names in sysfs attributes: power_supply olpc-ac: hwmon: 'olpc-ac' is not a valid name attribute, please fix power_supply olpc-battery: hwmon: 'olpc-battery' is not a valid name attribute, please fix See also commit648cd48c9e
("hwmon: Do not accept invalid name attributes") and commit74d3b64197
("hwmon: Relax name attribute validation for new APIs"). Signed-off-by: Lubomir Rintel <lkundrak@v3.sk> Signed-off-by: Sebastian Reichel <sebastian.reichel@collabora.com>
This commit is contained in:

committed by
Sebastian Reichel

parent
fa7cc725a3
commit
29e9eff40f
@@ -410,7 +410,7 @@ static void olpc_xo175_ec_complete(void *arg)
|
||||
dev_dbg(dev, "got event %.2x\n", byte);
|
||||
switch (byte) {
|
||||
case EVENT_AC_CHANGE:
|
||||
psy = power_supply_get_by_name("olpc-ac");
|
||||
psy = power_supply_get_by_name("olpc_ac");
|
||||
if (psy) {
|
||||
power_supply_changed(psy);
|
||||
power_supply_put(psy);
|
||||
@@ -420,7 +420,7 @@ static void olpc_xo175_ec_complete(void *arg)
|
||||
case EVENT_BATTERY_CRITICAL:
|
||||
case EVENT_BATTERY_SOC_CHANGE:
|
||||
case EVENT_BATTERY_ERROR:
|
||||
psy = power_supply_get_by_name("olpc-battery");
|
||||
psy = power_supply_get_by_name("olpc_battery");
|
||||
if (psy) {
|
||||
power_supply_changed(psy);
|
||||
power_supply_put(psy);
|
||||
|
Reference in New Issue
Block a user