diff options
author | Colin Ian King <colin.king@canonical.com> | 2018-07-16 12:03:15 +0300 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2018-07-16 15:30:46 +0300 |
commit | d6e08c7eabefc9b027d31d56024810eba76ce113 (patch) | |
tree | 0a8fd628ae5b4bc24ba364d41b9e881b120b937d /sound/pci/cs46xx | |
parent | c888443951949530b2eb9075cb24f6db00b8118d (diff) | |
download | linux-d6e08c7eabefc9b027d31d56024810eba76ce113.tar.xz |
ALSA: cs46xx: remove redundant pointer 'ins'
Pointer 'ins' is being assigned but is never used hence it is
redundant and can be removed.
Cleans up clang warning:
warning: variable 'ins' 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/cs46xx')
-rw-r--r-- | sound/pci/cs46xx/dsp_spos_scb_lib.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/sound/pci/cs46xx/dsp_spos_scb_lib.c b/sound/pci/cs46xx/dsp_spos_scb_lib.c index abb01ce66983..8d0a3d357345 100644 --- a/sound/pci/cs46xx/dsp_spos_scb_lib.c +++ b/sound/pci/cs46xx/dsp_spos_scb_lib.c @@ -73,13 +73,10 @@ static void cs46xx_dsp_proc_scb_info_read (struct snd_info_entry *entry, { struct proc_scb_info * scb_info = entry->private_data; struct dsp_scb_descriptor * scb = scb_info->scb_desc; - struct dsp_spos_instance * ins; struct snd_cs46xx *chip = scb_info->chip; int j,col; void __iomem *dst = chip->region.idx[1].remap_addr + DSP_PARAMETER_BYTE_OFFSET; - ins = chip->dsp_spos_instance; - mutex_lock(&chip->spos_mutex); snd_iprintf(buffer,"%04x %s:\n",scb->address,scb->scb_name); |