diff options
author | Daniel Mack <daniel@caiaq.de> | 2010-05-31 07:35:43 -0400 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2010-05-31 12:17:49 -0400 |
commit | 67e1daa0bb30eda6ec5add27c3abf4536030f5a6 (patch) | |
tree | 7309eecb049e51203c9c6500e7f7a054a9503173 /sound | |
parent | 2e0281d15c220d0a81c45c73872aa08d2f3ae3ef (diff) |
ALSA: usb-audio: clean up find_audio_control_unit()
Use a struct to parse the audio units, and return usable descriptors
for all types. There's no need to limit the result set, except for some
kind of sanity check.
Signed-off-by: Daniel Mack <daniel@caiaq.de>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound')
-rw-r--r-- | sound/usb/mixer.c | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/sound/usb/mixer.c b/sound/usb/mixer.c index 8be6bf2552b0..cb345360f811 100644 --- a/sound/usb/mixer.c +++ b/sound/usb/mixer.c | |||
@@ -165,22 +165,24 @@ static int check_mapped_selector_name(struct mixer_build *state, int unitid, | |||
165 | 165 | ||
166 | /* | 166 | /* |
167 | * find an audio control unit with the given unit id | 167 | * find an audio control unit with the given unit id |
168 | * this doesn't return any clock related units, so they need to be handled elsewhere | ||
169 | */ | 168 | */ |
170 | static void *find_audio_control_unit(struct mixer_build *state, unsigned char unit) | 169 | static void *find_audio_control_unit(struct mixer_build *state, unsigned char unit) |
171 | { | 170 | { |
172 | unsigned char *p; | 171 | /* we just parse the header */ |
172 | struct uac_feature_unit_descriptor *hdr = NULL; | ||
173 | 173 | ||
174 | p = NULL; | 174 | while ((hdr = snd_usb_find_desc(state->buffer, state->buflen, hdr, |
175 | while ((p = snd_usb_find_desc(state->buffer, state->buflen, p, | 175 | USB_DT_CS_INTERFACE)) != NULL) { |
176 | USB_DT_CS_INTERFACE)) != NULL) { | 176 | if (hdr->bLength >= 4 && |
177 | if (p[0] >= 4 && p[2] >= UAC_INPUT_TERMINAL && p[2] <= UAC2_EXTENSION_UNIT_V2 && p[3] == unit) | 177 | hdr->bDescriptorSubtype >= UAC_INPUT_TERMINAL && |
178 | return p; | 178 | hdr->bDescriptorSubtype <= UAC2_SAMPLE_RATE_CONVERTER && |
179 | hdr->bUnitID == unit) | ||
180 | return hdr; | ||
179 | } | 181 | } |
182 | |||
180 | return NULL; | 183 | return NULL; |
181 | } | 184 | } |
182 | 185 | ||
183 | |||
184 | /* | 186 | /* |
185 | * copy a string with the given id | 187 | * copy a string with the given id |
186 | */ | 188 | */ |