mirror of
https://git.proxmox.com/git/mirror_ubuntu-kernels.git
synced 2025-11-11 19:06:07 +00:00
ALSA: pci/korg1212: remove 'set but not used' warnings
Fix W=1 warnings. Two variables are only used for debug logs, mark
with __maybe_unused:
sound/pci/korg1212/korg1212.c: In function ‘snd_korg1212_create’:
sound/pci/korg1212/korg1212.c:2152:36: warning: variable ‘iomem2_size’
set but not used [-Wunused-but-set-variable]
2152 | unsigned ioport_size, iomem_size, iomem2_size;
| ^~~~~~~~~~~
sound/pci/korg1212/korg1212.c:2152:11: warning: variable ‘ioport_size’
set but not used [-Wunused-but-set-variable]
2152 | unsigned ioport_size, iomem_size, iomem2_size;
| ^~~~~~~~~~~
Signed-off-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
Link: https://lore.kernel.org/r/20200702193604.169059-15-pierre-louis.bossart@linux.intel.com
Signed-off-by: Takashi Iwai <tiwai@suse.de>
This commit is contained in:
parent
518fe506df
commit
6cdc01ebdf
@ -2149,7 +2149,9 @@ static int snd_korg1212_create(struct snd_card *card, struct pci_dev *pci,
|
|||||||
{
|
{
|
||||||
int err, rc;
|
int err, rc;
|
||||||
unsigned int i;
|
unsigned int i;
|
||||||
unsigned ioport_size, iomem_size, iomem2_size;
|
unsigned iomem_size;
|
||||||
|
__maybe_unused unsigned ioport_size;
|
||||||
|
__maybe_unused unsigned iomem2_size;
|
||||||
struct snd_korg1212 * korg1212;
|
struct snd_korg1212 * korg1212;
|
||||||
const struct firmware *dsp_code;
|
const struct firmware *dsp_code;
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user