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 X-Spam-Level: X-Spam-Status: No, score=-8.6 required=3.0 tests=DKIM_SIGNED,DKIM_VALID, DKIM_VALID_AU,HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_PATCH,MAILING_LIST_MULTI, SIGNED_OFF_BY,SPF_HELO_NONE,SPF_PASS,USER_AGENT_MUTT autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 9842DC28CC1 for ; Sat, 1 Jun 2019 07:59:54 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 650E727174 for ; Sat, 1 Jun 2019 07:59:54 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=pass (2048-bit key) header.d=zatta.me header.i=@zatta.me header.b="XU+1M9+D" Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726109AbfFAH7x (ORCPT ); Sat, 1 Jun 2019 03:59:53 -0400 Received: from mx.zatta.me ([185.52.2.58]:60296 "EHLO mx.zatta.me" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726013AbfFAH7x (ORCPT ); Sat, 1 Jun 2019 03:59:53 -0400 X-Greylist: delayed 412 seconds by postgrey-1.27 at vger.kernel.org; Sat, 01 Jun 2019 03:59:52 EDT Date: Sat, 1 Jun 2019 09:52:57 +0200 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=zatta.me; s=myselector; t=1559375578; bh=GFATOyLII7Ejt47SkpZ0aXp5mCACrurs7PI8mYj2KQ4=; h=Date:From:To:Subject; b=XU+1M9+DHTqkIqz5JNVLnUms8uKH2LLAV2XwzOSdawrP6CDu7LrmDgctE0tq7RdoE 7eUowgVjLF4hu+PBodBVZImuxD2WjAIxDu0fO1BotU0QZ2TM/vqQOOCFxKeYMy8zvs PYLdvV3vtOsmEPCWkAEZZtLsQq0dCy0grfktOExmWrQ2QkqLJdtjErIhx+m++BUR6y SM4SagGuCMXeWbZPtFA39zUe7dAaQdjqukcpGGiruhNkQYh/t3XSZDhZGEsFIVQzWe ccYxpUBQO62fnz42Y0r0W8mclcff1v/yE9D3Yn5QXIn0kHgFdHhCTLFSqZS6BuX9q1 1RAid2txjutBw== From: Marco Zatta To: Greg Kroah-Hartman , linux-usb@vger.kernel.org Subject: [PATCH] Fix chipmunk-like voice when using Logitech C270 for recording audio. Message-ID: <20190601075257.GA24550@jimmy.localdomain> Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.12.0 (2019-05-25) Sender: linux-usb-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-usb@vger.kernel.org This patch fixes the chipmunk-like voice that manifets randomly when using the integrated mic of the Logitech Webcam HD C270. The issue was solved initially for this device by commit 2394d67e446bf616a0885167d5f0d397bdacfdfc but it was then reintroduced by e387ef5c47ddeaeaa3cbdc54424cdb7a28dae2c0. This patch is to have the fix back. Signed-off-by: Marco Zatta --- drivers/usb/core/quirks.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/drivers/usb/core/quirks.c b/drivers/usb/core/quirks.c index 6082b008969b..6b6413073584 100644 --- a/drivers/usb/core/quirks.c +++ b/drivers/usb/core/quirks.c @@ -215,6 +215,9 @@ static const struct usb_device_id usb_quirk_list[] = { /* Cherry Stream G230 2.0 (G85-231) and 3.0 (G85-232) */ { USB_DEVICE(0x046a, 0x0023), .driver_info = USB_QUIRK_RESET_RESUME }, + /* Logitech HD Webcam C270 */ + { USB_DEVICE(0x046d, 0x0825), .driver_info = USB_QUIRK_RESET_RESUME }, + /* 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 }, -- 2.21.0