]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
ALSA: hda - Fix a compile warning when CONFIG_PM=n
authorTakashi Iwai <tiwai@suse.de>
Thu, 11 Dec 2008 10:47:17 +0000 (11:47 +0100)
committerTakashi Iwai <tiwai@suse.de>
Thu, 11 Dec 2008 10:48:33 +0000 (11:48 +0100)
Fixed the compile warning regarding the unused function when built
with CONFIG_PM=n:
  sound/pci/hda/hda_intel.c:1905: warning: ‘snd_hda_codecs_inuse’ defined but not used

snd_hda_codecs_inuse() is used only in the resume callback.

Signed-off-by: Takashi Iwai <tiwai@suse.de>
sound/pci/hda/hda_intel.c

index 8aee322313ed909860de37ef73a7036318938251..f2337e4eddda439c29f7fb62fcfe66fa380ada84 100644 (file)
@@ -1900,6 +1900,12 @@ static void azx_power_notify(struct hda_bus *bus)
        else if (chip->running && power_save_controller)
                azx_stop_chip(chip);
 }
+#endif /* CONFIG_SND_HDA_POWER_SAVE */
+
+#ifdef CONFIG_PM
+/*
+ * power management
+ */
 
 static int snd_hda_codecs_inuse(struct hda_bus *bus)
 {
@@ -1911,14 +1917,7 @@ static int snd_hda_codecs_inuse(struct hda_bus *bus)
        }
        return 0;
 }
-#else /* !CONFIG_SND_HDA_POWER_SAVE */
-#define snd_hda_codecs_inuse(bus) 1
-#endif /* CONFIG_SND_HDA_POWER_SAVE */
 
-#ifdef CONFIG_PM
-/*
- * power management
- */
 static int azx_suspend(struct pci_dev *pci, pm_message_t state)
 {
        struct snd_card *card = pci_get_drvdata(pci);