From mboxrd@z Thu Jan 1 00:00:00 1970 From: Takashi Iwai Subject: Re: Add "cval->res = 384" quirk for Logitech Webcam C500 Date: Wed, 05 Mar 2014 12:38:57 +0100 Message-ID: References: <5314C616.101@email.it> Mime-Version: 1.0 (generated by SEMI 1.14.6 - "Maruoka") Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: Received: from mx2.suse.de (cantor2.suse.de [195.135.220.15]) by alsa0.perex.cz (Postfix) with ESMTP id 6BA9926501B for ; Wed, 5 Mar 2014 12:38:57 +0100 (CET) In-Reply-To: <5314C616.101@email.it> 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 To: Simon Cc: alsa-devel@alsa-project.org List-Id: alsa-devel@alsa-project.org At Mon, 03 Mar 2014 19:12:38 +0100, Simon wrote: > > Hello, > > Since some time I am successfully using this workaround > > http://mailman.alsa-project.org/pipermail/alsa-devel/2011-March/037657.html > > to solve the problem for the Logitech C500 Webcam (046d:0807). > Would it be possible to add this device to the list included in the > mixer.c file? OK, I'll add the following fix. thanks, Takashi -- 8< -- From: Takashi Iwai Subject: [PATCH] ALSA: usb-audio: Add quirk for Logitech Webcam C500 Logitech C500 (046d:0807) needs the same workaround like other Logitech Webcams. Cc: Signed-off-by: Takashi Iwai --- sound/usb/mixer.c | 1 + 1 file changed, 1 insertion(+) diff --git a/sound/usb/mixer.c b/sound/usb/mixer.c index 44b0ba4feab3..1bed780e21d9 100644 --- a/sound/usb/mixer.c +++ b/sound/usb/mixer.c @@ -883,6 +883,7 @@ static void volume_control_quirks(struct usb_mixer_elem_info *cval, } break; + case USB_ID(0x046d, 0x0807): /* Logitech Webcam C500 */ case USB_ID(0x046d, 0x0808): case USB_ID(0x046d, 0x0809): case USB_ID(0x046d, 0x081b): /* HD Webcam c310 */ -- 1.9.0