From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 229CDEB64DD for ; Mon, 17 Jul 2023 00:24:09 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S230239AbjGQAYI convert rfc822-to-8bit (ORCPT ); Sun, 16 Jul 2023 20:24:08 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:53930 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229710AbjGQAYH (ORCPT ); Sun, 16 Jul 2023 20:24:07 -0400 Received: from relay7-d.mail.gandi.net (relay7-d.mail.gandi.net [IPv6:2001:4b98:dc4:8::227]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id D98BEE47 for ; Sun, 16 Jul 2023 17:24:05 -0700 (PDT) Received: by mail.gandi.net (Postfix) with ESMTPSA id A5ADD20005; Mon, 17 Jul 2023 00:24:02 +0000 (UTC) Message-ID: Subject: Re: [PATCH v2 2/2] HID: logitech-hidpp: Add support for the Pro X Superlight From: Bastien Nocera To: Mavroudis Chatzilazaridis , jikos@kernel.org Cc: linux-input@vger.kernel.org, benjamin.tissoires@redhat.com, lains@riseup.net Date: Mon, 17 Jul 2023 02:24:02 +0200 In-Reply-To: <20230716182320.85483-2-mavchatz@protonmail.com> References: <20230716182320.85483-1-mavchatz@protonmail.com> <20230716182320.85483-2-mavchatz@protonmail.com> Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 8BIT User-Agent: Evolution 3.48.4 (3.48.4-1.fc38) MIME-Version: 1.0 X-GND-Sasl: hadess@hadess.net Precedence: bulk List-ID: X-Mailing-List: linux-input@vger.kernel.org On Sun, 2023-07-16 at 18:23 +0000, Mavroudis Chatzilazaridis wrote: > This patch adds support for the Pro X Superlight over wired USB. > The device now reports the status of its battery. > > Co-developed-by: Filipe Laíns > Signed-off-by: Filipe Laíns > Signed-off-by: Mavroudis Chatzilazaridis Reviewed-by: Bastien Nocera > --- > V1 -> V2: Addressed review comment for commit message > >  drivers/hid/hid-logitech-hidpp.c | 2 ++ >  1 file changed, 2 insertions(+) > > diff --git a/drivers/hid/hid-logitech-hidpp.c b/drivers/hid/hid- > logitech-hidpp.c > index 129b01be488d..34fc4f7b254a 100644 > --- a/drivers/hid/hid-logitech-hidpp.c > +++ b/drivers/hid/hid-logitech-hidpp.c > @@ -4620,6 +4620,8 @@ static const struct hid_device_id > hidpp_devices[] = { >                 .driver_data = HIDPP_QUIRK_CLASS_G920 | > HIDPP_QUIRK_FORCE_OUTPUT_REPORTS }, >         { /* Logitech G Pro Gaming Mouse over USB */ >           HID_USB_DEVICE(USB_VENDOR_ID_LOGITECH, 0xC088) }, > +       { /* Logitech G Pro X Superlight Gaming Mouse over USB */ > +         HID_USB_DEVICE(USB_VENDOR_ID_LOGITECH, 0xC094) }, > >         { /* G935 Gaming Headset */ >           HID_USB_DEVICE(USB_VENDOR_ID_LOGITECH, 0x0a87), > -- > 2.34.1 > >