From: Sachin Kamat Date: Tue, 1 Jul 2014 11:32:57 +0000 (+0530) Subject: ALSA: echoaudio: Remove unused variable X-Git-Tag: v3.17-rc1~101^2~13^2~22 X-Git-Url: https://openfabrics.org/gitweb/?a=commitdiff_plain;h=427f42e4cf3a681d181fd1f0492731b167807877;p=~emulex%2Finfiniband.git ALSA: echoaudio: Remove unused variable 'chip' is not used in the function. Remove it. Signed-off-by: Sachin Kamat Signed-off-by: Takashi Iwai --- diff --git a/sound/pci/echoaudio/echoaudio.c b/sound/pci/echoaudio/echoaudio.c index 9f10c9e0df5..631aaa4046a 100644 --- a/sound/pci/echoaudio/echoaudio.c +++ b/sound/pci/echoaudio/echoaudio.c @@ -1754,9 +1754,6 @@ static struct snd_kcontrol_new snd_echo_vumeters_switch = { static int snd_echo_vumeters_info(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo) { - struct echoaudio *chip; - - chip = snd_kcontrol_chip(kcontrol); uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER; uinfo->count = 96; uinfo->value.integer.min = ECHOGAIN_MINOUT; @@ -1798,9 +1795,6 @@ static struct snd_kcontrol_new snd_echo_vumeters = { static int snd_echo_channels_info_info(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo) { - struct echoaudio *chip; - - chip = snd_kcontrol_chip(kcontrol); uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER; uinfo->count = 6; uinfo->value.integer.min = 0;