Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753162AbdHUKDu (ORCPT ); Mon, 21 Aug 2017 06:03:50 -0400 Received: from mail-wr0-f193.google.com ([209.85.128.193]:33412 "EHLO mail-wr0-f193.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753008AbdHUKDr (ORCPT ); Mon, 21 Aug 2017 06:03:47 -0400 From: Dmitry Fleytman Cc: Dmitry Fleytman , Greg Kroah-Hartman , Sandeep Singh , Samuel Thibault , Shyam Sundar S K , Devin Heitmueller , =?UTF-8?q?Luk=C3=A1=C5=A1=20Lalinsk=C3=BD?= , Kai-Heng Feng , linux-usb@vger.kernel.org, linux-kernel@vger.kernel.org Subject: [PATCH] usb: Add device quirk for Logitech HD Pro Webcam C920-C Date: Mon, 21 Aug 2017 13:03:31 +0300 Message-Id: <20170821100333.3538-1-dmitry@daynix.com> X-Mailer: git-send-email 2.13.5 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: 982 Lines: 28 Commit e0429362ab15 ("usb: Add device quirk for Logitech HD Pro Webcams C920 and C930e") introduced quirk to workaround an issue with some Logitech webcams. Apparently model C920-C has the same issue 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 | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/usb/core/quirks.c b/drivers/usb/core/quirks.c index 574da2b..36d4841 100644 --- a/drivers/usb/core/quirks.c +++ b/drivers/usb/core/quirks.c @@ -59,6 +59,7 @@ static const struct usb_device_id usb_quirk_list[] = { /* Logitech HD Pro Webcams C920 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 }, /* Logitech ConferenceCam CC3000e */ -- 2.7.4