Commit 77ed16cc6c4d8ff0fe7b18c53e13826a81bd4d06

Authored by Takashi Iwai
1 parent 8e35cd4ac9

ALSA: cmi8328: Fix compile warnings without CONFIG_PM

Just add an ifdef CONFIG_PM to shut up the warnings:

  sound/isa/cmi8328.c:129:13: warning: ‘snd_cmi8328_cfg_save’ defined but not used [-Wunused-function]
  sound/isa/cmi8328.c:136:13: warning: ‘snd_cmi8328_cfg_restore’ defined but not used [-Wunused-function]

Signed-off-by: Takashi Iwai <tiwai@suse.de>

Showing 1 changed file with 2 additions and 0 deletions Side-by-side Diff

... ... @@ -126,6 +126,7 @@
126 126 outb(val, port + 3); /* yes, value goes to the same port as index */
127 127 }
128 128  
  129 +#ifdef CONFIG_PM
129 130 static void snd_cmi8328_cfg_save(u16 port, u8 cfg[])
130 131 {
131 132 cfg[0] = snd_cmi8328_cfg_read(port, CFG1);
... ... @@ -139,6 +140,7 @@
139 140 snd_cmi8328_cfg_write(port, CFG2, cfg[1]);
140 141 snd_cmi8328_cfg_write(port, CFG3, cfg[2]);
141 142 }
  143 +#endif /* CONFIG_PM */
142 144  
143 145 static int snd_cmi8328_mixer(struct snd_wss *chip)
144 146 {