diff options
author | Colin Ian King <colin.king@canonical.com> | 2018-08-01 11:47:37 +0100 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2018-08-01 13:59:58 +0200 |
commit | 3b0cbc7812d759ffb38d881e75c0318512283d00 (patch) | |
tree | bacaf70216b9e8d7e109c5a9de65056253ffdfe1 /sound/pci | |
parent | de42b4b96ebe29058ce1cb59a1f98d58b8abd132 (diff) | |
download | linux-3b0cbc7812d759ffb38d881e75c0318512283d00.tar.bz2 |
ALSA: ens137x: remove redundant array pcm_devs
The array pcm_devs is being assigned but is never used hence it is
redundant and can be removed.
Cleans up clang warning:
warning: variable 'pcm_devs' set but not used [-Wunused-but-set-variable]
Signed-off-by: Colin Ian King <colin.king@canonical.com>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/pci')
-rw-r--r-- | sound/pci/ens1370.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sound/pci/ens1370.c b/sound/pci/ens1370.c index 39f79a6b5283..727eb3da1fda 100644 --- a/sound/pci/ens1370.c +++ b/sound/pci/ens1370.c @@ -2392,7 +2392,7 @@ static int snd_audiopci_probe(struct pci_dev *pci, static int dev; struct snd_card *card; struct ensoniq *ensoniq; - int err, pcm_devs[2]; + int err; if (dev >= SNDRV_CARDS) return -ENODEV; @@ -2412,7 +2412,6 @@ static int snd_audiopci_probe(struct pci_dev *pci, } card->private_data = ensoniq; - pcm_devs[0] = 0; pcm_devs[1] = 1; #ifdef CHIP1370 if ((err = snd_ensoniq_1370_mixer(ensoniq)) < 0) { snd_card_free(card); |