From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751492AbdAQOgR (ORCPT ); Tue, 17 Jan 2017 09:36:17 -0500 Received: from mx1.redhat.com ([209.132.183.28]:39688 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751457AbdAQOgN (ORCPT ); Tue, 17 Jan 2017 09:36:13 -0500 From: Benjamin Tissoires To: Jiri Kosina , Bastien Nocera , Peter Hutterer , Nestor Lopez Casado , Olivier Gay , Simon Wood Cc: linux-input@vger.kernel.org, linux-kernel@vger.kernel.org Subject: [PATCH 06/17] HID: logitech-hidpp: create the battery for all types of HID++ devices Date: Tue, 17 Jan 2017 15:35:36 +0100 Message-Id: <20170117143547.30488-7-benjamin.tissoires@redhat.com> In-Reply-To: <20170117143547.30488-1-benjamin.tissoires@redhat.com> References: <20170117143547.30488-1-benjamin.tissoires@redhat.com> X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.39]); Tue, 17 Jan 2017 14:36:08 +0000 (UTC) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org The creation of the power_supply should not be in a HID++ 2.0 specific function. Signed-off-by: Benjamin Tissoires --- drivers/hid/hid-logitech-hidpp.c | 94 ++++++++++++++++++---------------------- 1 file changed, 43 insertions(+), 51 deletions(-) diff --git a/drivers/hid/hid-logitech-hidpp.c b/drivers/hid/hid-logitech-hidpp.c index 77bfb65..0c7144f 100644 --- a/drivers/hid/hid-logitech-hidpp.c +++ b/drivers/hid/hid-logitech-hidpp.c @@ -803,57 +803,6 @@ static int hidpp_battery_get_property(struct power_supply *psy, return ret; } -static int hidpp20_initialize_battery(struct hidpp_device *hidpp) -{ - static atomic_t battery_no = ATOMIC_INIT(0); - struct power_supply_config cfg = { .drv_data = hidpp }; - struct power_supply_desc *desc = &hidpp->battery.desc; - struct hidpp_battery *battery; - unsigned long n; - int ret; - - ret = hidpp20_query_battery_info(hidpp); - if (ret) - return ret; - - battery = &hidpp->battery; - - n = atomic_inc_return(&battery_no) - 1; - desc->properties = hidpp_battery_props; - desc->num_properties = ARRAY_SIZE(hidpp_battery_props); - desc->get_property = hidpp_battery_get_property; - sprintf(battery->name, "hidpp_battery_%ld", n); - desc->name = battery->name; - desc->type = POWER_SUPPLY_TYPE_BATTERY; - desc->use_for_apm = 0; - - battery->ps = devm_power_supply_register(&hidpp->hid_dev->dev, - &battery->desc, - &cfg); - if (IS_ERR(battery->ps)) - return PTR_ERR(battery->ps); - - power_supply_powers(battery->ps, &hidpp->hid_dev->dev); - - return 0; -} - -static int hidpp_initialize_battery(struct hidpp_device *hidpp) -{ - int ret; - - if (hidpp->battery.ps) - return 0; - - if (hidpp->protocol_major >= 2) { - ret = hidpp20_initialize_battery(hidpp); - if (ret == 0) - hidpp->quirks |= HIDPP_QUIRK_HIDPP20_BATTERY; - } - - return ret; -} - /* -------------------------------------------------------------------------- */ /* 0x6010: Touchpad FW items */ /* -------------------------------------------------------------------------- */ @@ -2311,6 +2260,49 @@ static int hidpp_raw_event(struct hid_device *hdev, struct hid_report *report, return 0; } +static int hidpp_initialize_battery(struct hidpp_device *hidpp) +{ + static atomic_t battery_no = ATOMIC_INIT(0); + struct power_supply_config cfg = { .drv_data = hidpp }; + struct power_supply_desc *desc = &hidpp->battery.desc; + struct hidpp_battery *battery; + unsigned long n; + int ret; + + if (hidpp->battery.ps) + return 0; + + if (hidpp->protocol_major >= 2) { + ret = hidpp20_query_battery_info(hidpp); + if (ret) + return ret; + hidpp->quirks |= HIDPP_QUIRK_HIDPP20_BATTERY; + } else { + return -ENOENT; + } + + battery = &hidpp->battery; + + n = atomic_inc_return(&battery_no) - 1; + desc->properties = hidpp_battery_props; + desc->num_properties = ARRAY_SIZE(hidpp_battery_props); + desc->get_property = hidpp_battery_get_property; + sprintf(battery->name, "hidpp_battery_%ld", n); + desc->name = battery->name; + desc->type = POWER_SUPPLY_TYPE_BATTERY; + desc->use_for_apm = 0; + + battery->ps = devm_power_supply_register(&hidpp->hid_dev->dev, + &battery->desc, + &cfg); + if (IS_ERR(battery->ps)) + return PTR_ERR(battery->ps); + + power_supply_powers(battery->ps, &hidpp->hid_dev->dev); + + return ret; +} + static void hidpp_overwrite_name(struct hid_device *hdev, bool use_unifying) { struct hidpp_device *hidpp = hid_get_drvdata(hdev); -- 2.9.3