Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S938229AbdLSECa (ORCPT ); Mon, 18 Dec 2017 23:02:30 -0500 Received: from mail-wr0-f194.google.com ([209.85.128.194]:34866 "EHLO mail-wr0-f194.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S934856AbdLSEC2 (ORCPT ); Mon, 18 Dec 2017 23:02:28 -0500 X-Google-Smtp-Source: ACJfBou2ZCMJsfM6xD0Jyg4gItQqFmtnhfHjbVOuF3aCDwWMzaUbNsweqKjciQPSS9WuwEgAZU6BAQ== From: Dmitry Fleytman Cc: Dmitry Fleytman Dmitry Fleytman , Greg Kroah-Hartman , Alan Stern , Felipe Balbi , Kai-Heng Feng , Dmitry Fleytman , =?UTF-8?q?Luk=C3=A1=C5=A1=20Lalinsk=C3=BD?= , Bernhard Rosenkraenzer , Samuel Thibault , Daniel Drake , Devin Heitmueller , linux-usb@vger.kernel.org, linux-kernel@vger.kernel.org Subject: [PATCH v2] usb: Add device quirk for Logitech HD Pro Webcam C925e Date: Tue, 19 Dec 2017 06:02:04 +0200 Message-Id: <20171219040210.2122-1-dmitry.fleytman@gmail.com> X-Mailer: git-send-email 2.14.1 In-Reply-To: <73DF6318-5DA0-44E2-8E0D-54F18A6B426F@gmail.com> References: <73DF6318-5DA0-44E2-8E0D-54F18A6B426F@gmail.com> To: unlisted-recipients:; (no To-header on input) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1424 Lines: 35 From: Dmitry Fleytman Dmitry Fleytman Commit e0429362ab15 ("usb: Add device quirk for Logitech HD Pro Webcams C920 and C930e") introduced quirk to workaround an issue with some Logitech webcams. There is one more model that has the same issue - C925e, so applying the same quirk as well. See aforementioned commit message for detailed explanation of the problem. Signed-off-by: Dmitry Fleytman --- drivers/usb/core/quirks.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/drivers/usb/core/quirks.c b/drivers/usb/core/quirks.c index a10b346b9777..848da96614e8 100644 --- a/drivers/usb/core/quirks.c +++ b/drivers/usb/core/quirks.c @@ -52,10 +52,11 @@ static const struct usb_device_id usb_quirk_list[] = { /* Microsoft LifeCam-VX700 v2.0 */ { USB_DEVICE(0x045e, 0x0770), .driver_info = USB_QUIRK_RESET_RESUME }, - /* Logitech HD Pro Webcams C920, C920-C and C930e */ + /* Logitech HD Pro Webcams C920, C920-C, C925e and C930e */ { USB_DEVICE(0x046d, 0x082d), .driver_info = USB_QUIRK_DELAY_INIT }, { USB_DEVICE(0x046d, 0x0841), .driver_info = USB_QUIRK_DELAY_INIT }, { USB_DEVICE(0x046d, 0x0843), .driver_info = USB_QUIRK_DELAY_INIT }, + { USB_DEVICE(0x046d, 0x085b), .driver_info = USB_QUIRK_DELAY_INIT }, /* Logitech ConferenceCam CC3000e */ { USB_DEVICE(0x046d, 0x0847), .driver_info = USB_QUIRK_DELAY_INIT }, -- 2.14.1