Skip to content

Commit

Permalink
ALSA: usb-audio: Remove set but not used variable 'first_ch_bits'
Browse files Browse the repository at this point in the history
Fixes gcc '-Wunused-but-set-variable' warning:

sound/usb/mixer.c: In function 'parse_audio_feature_unit':
sound/usb/mixer.c:1838:28: warning:
 variable 'first_ch_bits' set but not used [-Wunused-but-set-variable]

It never used since 2.6

Signed-off-by: YueHaibing <yuehaibing@huawei.com>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
  • Loading branch information
YueHaibing authored and Takashi Iwai committed Jan 9, 2019
1 parent fc2a6cf commit 36c346e
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions sound/usb/mixer.c
Original file line number Diff line number Diff line change
Expand Up @@ -1835,7 +1835,7 @@ static int parse_audio_feature_unit(struct mixer_build *state, int unitid,
{
int channels, i, j;
struct usb_audio_term iterm;
unsigned int master_bits, first_ch_bits;
unsigned int master_bits;
int err, csize;
struct uac_feature_unit_descriptor *hdr = _ftr;
__u8 *bmaControls;
Expand Down Expand Up @@ -1926,10 +1926,6 @@ static int parse_audio_feature_unit(struct mixer_build *state, int unitid,
break;

}
if (channels > 0)
first_ch_bits = snd_usb_combine_bytes(bmaControls + csize, csize);
else
first_ch_bits = 0;

if (state->mixer->protocol == UAC_VERSION_1) {
/* check all control types */
Expand Down

0 comments on commit 36c346e

Please sign in to comment.