aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBenjamin Tissoires <benjamin.tissoires@redhat.com>2017-03-27 10:59:30 -0400
committerJiri Kosina <jkosina@suse.cz>2017-04-06 08:36:38 -0400
commit32043d0fdf9c5ef246e92f59c98624ed135b9e4e (patch)
tree4f5b6feb85c626420ac6b33fef3c1dcebe49dbbd
parenteb626c573219233bfd330fef9066e7f9530b078e (diff)
HID: logitech-hidpp: forward device info in power_supply
Better forwarding the device name, manufacturer and serial to upower. Note that serial is still empty, it will be filled in a later patch in this series. Signed-off-by: Benjamin Tissoires <benjamin.tissoires@redhat.com> Tested-by: Bastien Nocera <hadess@hadess.net> Signed-off-by: Jiri Kosina <jkosina@suse.cz>
-rw-r--r--drivers/hid/hid-logitech-hidpp.c15
1 files changed, 15 insertions, 0 deletions
diff --git a/drivers/hid/hid-logitech-hidpp.c b/drivers/hid/hid-logitech-hidpp.c
index 3e2f716b446d..421c3740abcd 100644
--- a/drivers/hid/hid-logitech-hidpp.c
+++ b/drivers/hid/hid-logitech-hidpp.c
@@ -813,6 +813,9 @@ static enum power_supply_property hidpp_battery_props[] = {
813 POWER_SUPPLY_PROP_STATUS, 813 POWER_SUPPLY_PROP_STATUS,
814 POWER_SUPPLY_PROP_CAPACITY, 814 POWER_SUPPLY_PROP_CAPACITY,
815 POWER_SUPPLY_PROP_SCOPE, 815 POWER_SUPPLY_PROP_SCOPE,
816 POWER_SUPPLY_PROP_MODEL_NAME,
817 POWER_SUPPLY_PROP_MANUFACTURER,
818 POWER_SUPPLY_PROP_SERIAL_NUMBER,
816}; 819};
817 820
818static int hidpp_battery_get_property(struct power_supply *psy, 821static int hidpp_battery_get_property(struct power_supply *psy,
@@ -832,6 +835,18 @@ static int hidpp_battery_get_property(struct power_supply *psy,
832 case POWER_SUPPLY_PROP_SCOPE: 835 case POWER_SUPPLY_PROP_SCOPE:
833 val->intval = POWER_SUPPLY_SCOPE_DEVICE; 836 val->intval = POWER_SUPPLY_SCOPE_DEVICE;
834 break; 837 break;
838 case POWER_SUPPLY_PROP_MODEL_NAME:
839 if (!strncmp(hidpp->name, "Logitech ", 9))
840 val->strval = hidpp->name + 9;
841 else
842 val->strval = hidpp->name;
843 break;
844 case POWER_SUPPLY_PROP_MANUFACTURER:
845 val->strval = "Logitech";
846 break;
847 case POWER_SUPPLY_PROP_SERIAL_NUMBER:
848 val->strval = hidpp->hid_dev->uniq;
849 break;
835 default: 850 default:
836 ret = -EINVAL; 851 ret = -EINVAL;
837 break; 852 break;