ALSA: ice1712: Fix build errors
authorRandy Dunlap <rdunlap@xenotime.net>
Tue, 23 Oct 2012 17:34:16 +0000 (10:34 -0700)
committerTakashi Iwai <tiwai@suse.de>
Tue, 23 Oct 2012 18:32:41 +0000 (20:32 +0200)
Fix build errors by using correct kconfig symbol name:

sound/pci/ice1712/psc724.c:417:5: error: 'struct snd_ice1712' has no member named 'pm_resume'
sound/pci/ice1712/psc724.c:418:5: error: 'struct snd_ice1712' has no member named 'pm_suspend_enabled'

[Fixed another #ifdef CONFIG_PM in the same file, too, by tiwai]

Signed-off-by: Randy Dunlap <rdunlap@xenotime.net>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
sound/pci/ice1712/psc724.c

index 457cbaab0c6eb04188037184e4cd36e685648ed9..0b6c4e69b8d022a883ba9ec5fd51d71011328ada 100644 (file)
@@ -382,7 +382,7 @@ static void psc724_set_pro_rate(struct snd_ice1712 *ice, unsigned int rate)
 
 /* power management */
 
-#ifdef CONFIG_PM
+#ifdef CONFIG_PM_SLEEP
 static int psc724_resume(struct snd_ice1712 *ice)
 {
        struct psc724_spec *spec = ice->spec;
@@ -413,7 +413,7 @@ static int __devinit psc724_init(struct snd_ice1712 *ice)
        snd_wm8776_init(&spec->wm8776);
        spec->wm8766.ops.write = psc724_wm8766_write;
        spec->wm8766.card = ice->card;
-#ifdef CONFIG_PM
+#ifdef CONFIG_PM_SLEEP
        ice->pm_resume = psc724_resume;
        ice->pm_suspend_enabled = 1;
 #endif