diff options
author | Sachin Kamat <sachin.kamat@samsung.com> | 2014-07-01 17:02:57 +0530 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2014-07-01 14:06:24 +0200 |
commit | 427f42e4cf3a681d181fd1f0492731b167807877 (patch) | |
tree | 082e90730102c4e14d9bdbc22ecf4ee768207b46 /sound/pci | |
parent | 178942b69f4eb695bfb92742b6082052d6730ca0 (diff) | |
download | op-kernel-dev-427f42e4cf3a681d181fd1f0492731b167807877.zip op-kernel-dev-427f42e4cf3a681d181fd1f0492731b167807877.tar.gz |
ALSA: echoaudio: Remove unused variable
'chip' is not used in the function. Remove it.
Signed-off-by: Sachin Kamat <sachin.kamat@samsung.com>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/pci')
-rw-r--r-- | sound/pci/echoaudio/echoaudio.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/sound/pci/echoaudio/echoaudio.c b/sound/pci/echoaudio/echoaudio.c index 9f10c9e..631aaa4 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; |