From mboxrd@z Thu Jan 1 00:00:00 1970 From: Takashi Iwai Subject: Re: [PATCH] ALSA: usb: Parse UAC2 extension unit like for UAC1 Date: Tue, 19 Mar 2013 18:08:15 +0100 Message-ID: References: <20130319161214.GB7539@pvv.ntnu.no> 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 7D52426030F for ; Tue, 19 Mar 2013 18:08:15 +0100 (CET) In-Reply-To: <20130319161214.GB7539@pvv.ntnu.no> 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: Torstein Hegge Cc: alsa-devel@alsa-project.org List-Id: alsa-devel@alsa-project.org At Tue, 19 Mar 2013 17:12:14 +0100, Torstein Hegge wrote: > > UAC2_EXTENSION_UNIT_V2 differs from UAC1_EXTENSION_UNIT, but can be handled in > the same way when parsing the unit. Otherwise parse_audio_unit() fails when it > sees an extension unit on a UAC2 device. > > UAC2_EXTENSION_UNIT_V2 is outside the range allocated by UAC1. > > Signed-off-by: Torstein Hegge Does this bug hit on any existing device with 3.9-rc kernel? If it does, it'd be nice to have a bit actual description. Then I'm going to merge this for the next 3.9-rc. Otherwise it'll go to for-next branch. thanks, Takashi > --- > sound/usb/mixer.c | 5 ++++- > 1 file changed, 4 insertions(+), 1 deletion(-) > > diff --git a/sound/usb/mixer.c b/sound/usb/mixer.c > index 638e7f7..8eb84c0 100644 > --- a/sound/usb/mixer.c > +++ b/sound/usb/mixer.c > @@ -725,7 +725,8 @@ static int check_input_term(struct mixer_build *state, int id, struct usb_audio_ > case UAC1_PROCESSING_UNIT: > case UAC1_EXTENSION_UNIT: > /* UAC2_PROCESSING_UNIT_V2 */ > - /* UAC2_EFFECT_UNIT */ { > + /* UAC2_EFFECT_UNIT */ > + case UAC2_EXTENSION_UNIT_V2: { > struct uac_processing_unit_descriptor *d = p1; > > if (state->mixer->protocol == UAC_VERSION_2 && > @@ -2052,6 +2053,8 @@ static int parse_audio_unit(struct mixer_build *state, int unitid) > return parse_audio_extension_unit(state, unitid, p1); > else /* UAC_VERSION_2 */ > return parse_audio_processing_unit(state, unitid, p1); > + case UAC2_EXTENSION_UNIT_V2: > + return parse_audio_extension_unit(state, unitid, p1); > default: > snd_printk(KERN_ERR "usbaudio: unit %u: unexpected type 0x%02x\n", unitid, p1[2]); > return -EINVAL; > -- > 1.7.10.4 > > _______________________________________________ > Alsa-devel mailing list > Alsa-devel@alsa-project.org > http://mailman.alsa-project.org/mailman/listinfo/alsa-devel >