projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8dba302
)
HID: logitech-hidpp: Add scope to battery
author
Bastien Nocera
<
[email protected]
>
Mon, 27 Mar 2017 14:59:22 +0000
(16:59 +0200)
committer
Jiri Kosina
<
[email protected]
>
Thu, 6 Apr 2017 12:36:36 +0000
(14:36 +0200)
Without a scope defined, UPower assumes that the battery provides
power to the computer it's connected to, like a laptop battery or a UPS.
Tested-by: Peter Hutterer <
[email protected]
>
Signed-off-by: Bastien Nocera <
[email protected]
>
Signed-off-by: Benjamin Tissoires <
[email protected]
>
Tested-by: Bastien Nocera <
[email protected]
>
Signed-off-by: Jiri Kosina <
[email protected]
>
drivers/hid/hid-logitech-hidpp.c
patch
|
blob
|
history
diff --git
a/drivers/hid/hid-logitech-hidpp.c
b/drivers/hid/hid-logitech-hidpp.c
index 4eeb550617bfe2bcb4502d660caf15c84eef01e3..4aaf2378897f21759615898549e9e04d8eb287da 100644
(file)
--- a/
drivers/hid/hid-logitech-hidpp.c
+++ b/
drivers/hid/hid-logitech-hidpp.c
@@
-761,6
+761,7
@@
static int hidpp20_battery_event(struct hidpp_device *hidpp,
static enum power_supply_property hidpp_battery_props[] = {
POWER_SUPPLY_PROP_STATUS,
POWER_SUPPLY_PROP_CAPACITY,
+ POWER_SUPPLY_PROP_SCOPE,
};
static int hidpp_battery_get_property(struct power_supply *psy,
@@
-777,6
+778,9
@@
static int hidpp_battery_get_property(struct power_supply *psy,
case POWER_SUPPLY_PROP_CAPACITY:
val->intval = hidpp->battery.level;
break;
+ case POWER_SUPPLY_PROP_SCOPE:
+ val->intval = POWER_SUPPLY_SCOPE_DEVICE;
+ break;
default:
ret = -EINVAL;
break;