Skip to content

Commit

Permalink
ALSA: usb-audio: UAC2: clean up parsing of bmaControls
Browse files Browse the repository at this point in the history
Introduce two new static inline functions for a more readable parsing
of UAC2 bmaControls.

Signed-off-by: Daniel Mack <daniel@caiaq.de>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
  • Loading branch information
Daniel Mack authored and Takashi Iwai committed May 31, 2010
1 parent 67a3e12 commit dcbe7bc
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 4 deletions.
10 changes: 10 additions & 0 deletions include/linux/usb/audio-v2.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,16 @@
/* v1.0 and v2.0 of this standard have many things in common. For the rest
* of the definitions, please refer to audio.h */

static inline bool uac2_control_is_readable(u32 bmControls, u8 control)
{
return (bmControls >> (control * 2)) & 0x1;
}

static inline bool uac2_control_is_writeable(u32 bmControls, u8 control)
{
return (bmControls >> (control * 2)) & 0x2;
}

/* 4.7.2.1 Clock Source Descriptor */

struct uac_clock_source_descriptor {
Expand Down
8 changes: 4 additions & 4 deletions sound/usb/mixer.c
Original file line number Diff line number Diff line change
Expand Up @@ -1188,19 +1188,19 @@ static int parse_audio_feature_unit(struct mixer_build *state, int unitid, void

for (j = 0; j < channels; j++) {
unsigned int mask = snd_usb_combine_bytes(bmaControls + csize * (j+1), csize);
if (mask & (1 << (i * 2))) {
if (uac2_control_is_readable(mask, i)) {
ch_bits |= (1 << j);
if (~mask & (1 << ((i * 2) + 1)))
if (!uac2_control_is_writeable(mask, i))
ch_read_only |= (1 << j);
}
}

/* FIXME: the whole unit is read-only if any of the channels is marked read-only */
if (ch_bits & 1) /* the first channel must be set (for ease of programming) */
build_feature_ctl(state, _ftr, ch_bits, i, &iterm, unitid, !!ch_read_only);
if (master_bits & (1 << i * 2))
if (uac2_control_is_readable(master_bits, i))
build_feature_ctl(state, _ftr, 0, i, &iterm, unitid,
~master_bits & (1 << ((i * 2) + 1)));
!uac2_control_is_writeable(master_bits, i));
}
}

Expand Down

0 comments on commit dcbe7bc

Please sign in to comment.