From patchwork Sun Feb 14 09:22:25 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: denk X-Patchwork-Id: 8301611 Return-Path: X-Original-To: patchwork-alsa-devel@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork2.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.136]) by patchwork2.web.kernel.org (Postfix) with ESMTP id 65E3FC02AA for ; Sun, 14 Feb 2016 09:22:41 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 79DB7203C0 for ; Sun, 14 Feb 2016 09:22:40 +0000 (UTC) Received: from alsa0.perex.cz (alsa0.perex.cz [77.48.224.243]) by mail.kernel.org (Postfix) with ESMTP id 9BC4C203AA for ; Sun, 14 Feb 2016 09:22:38 +0000 (UTC) Received: by alsa0.perex.cz (Postfix, from userid 1000) id 2F6DF2605BD; Sun, 14 Feb 2016 10:22:36 +0100 (CET) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00,FREEMAIL_FROM, RCVD_IN_DNSWL_NONE, UNPARSEABLE_RELAY autolearn=unavailable version=3.3.1 Received: from alsa0.perex.cz (localhost [127.0.0.1]) by alsa0.perex.cz (Postfix) with ESMTP id 1057B260580; Sun, 14 Feb 2016 10:22:32 +0100 (CET) X-Original-To: alsa-devel@alsa-project.org Delivered-To: alsa-devel@alsa-project.org Received: by alsa0.perex.cz (Postfix, from userid 1000) id D6C7026059A; Sun, 14 Feb 2016 10:22:30 +0100 (CET) Received: from skylla.efm.de (skylla.efm.de [195.190.148.248]) by alsa0.perex.cz (Postfix) with ESMTP id EBD02260509 for ; Sun, 14 Feb 2016 10:22:25 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by skylla.efm.de (Postfix) with ESMTP id 926A4761182 for ; Sun, 14 Feb 2016 10:22:25 +0100 (CET) Received: from skylla.efm.de ([127.0.0.1]) by localhost (skylla.efm.de [127.0.0.1]) (amavisd-new, port 10032) with ESMTP id GQ1W8Hcllomc for ; Sun, 14 Feb 2016 10:22:25 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by skylla.efm.de (Postfix) with ESMTP id 75E0A7615CD for ; Sun, 14 Feb 2016 10:22:25 +0100 (CET) X-Virus-Scanned: amavisd-new at skylla.efm.de Received: from skylla.efm.de ([127.0.0.1]) by localhost (skylla.efm.de [127.0.0.1]) (amavisd-new, port 10026) with ESMTP id S_LyUOljTQPK for ; Sun, 14 Feb 2016 10:22:25 +0100 (CET) Received: from skylla.efm.de (skylla.efm.de [195.190.148.248]) by skylla.efm.de (Postfix) with ESMTP id 601F7761182 for ; Sun, 14 Feb 2016 10:22:25 +0100 (CET) Date: Sun, 14 Feb 2016 10:22:25 +0100 (CET) From: denk To: alsa-devel@alsa-project.org Message-ID: <1712952849.47831328.1455441745316.JavaMail.zimbra@dkadioglu.de> MIME-Version: 1.0 X-Mailer: Zimbra 8.6.0_GA_1194 (ZimbraWebClient - FF44 (Linux)/8.6.0_GA_1194) Thread-Topic: Plantronics DA45 cannot get freq at ep 0x4 Thread-Index: X02V8gvZxwzv344tBhis5TmQc4ke4w== Subject: [alsa-devel] Plantronics DA45 cannot get freq at ep 0x4 X-BeenThere: alsa-devel@alsa-project.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "Alsa-devel mailing list for ALSA developers - http://www.alsa-project.org" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: alsa-devel-bounces@alsa-project.org Sender: alsa-devel-bounces@alsa-project.org X-Virus-Scanned: ClamAV using ClamSMTP Hi, using the Plantronics DA45 Headset Adapter leads to many lines of cannot get freq at ep 0x4 and cannot get freq at ep 0x84. I found a similar error in the following discussion: http://www.spinics.net/lists/linux-usb/msg125029.html I added the USB ID of the DA45, recompiled the kernel and the messages are gone. I would be happy if you could accept this simple addition made by the following patch: If there are any questions or something missing, please ask. Thanks in advance. Best denk --- a/sound/usb/quirks.c 2015-12-15 06:41:43.000000000 +0100 +++ b/sound/usb/quirks.c 2016-01-28 08:15:35.207785555 +0100 @@ -1122,6 +1122,7 @@ case USB_ID(0x045E, 0x0779): /* MS Lifecam HD-3000 */ case USB_ID(0x04D8, 0xFEEA): /* Benchmark DAC1 Pre */ case USB_ID(0x074D, 0x3553): /* Outlaw RR2150 (Micronas UAC3553B) */ + case USB_ID(0x047F, 0xAA05): /* Plantronics DA45 */ return true; } return false;