diff options
author | Takashi Iwai <tiwai@suse.de> | 2008-12-11 05:47:17 -0500 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2008-12-11 05:48:33 -0500 |
commit | 5c0b9bec460c348d2ee5a800c288e5d0e8fcda66 (patch) | |
tree | 8feaee6399fd52f1b4bae94551878e45c476a75d /sound/pci/hda/hda_intel.c | |
parent | 11d518e07d700eeb5bcec36bfd5f501e405230dd (diff) |
ALSA: hda - Fix a compile warning when CONFIG_PM=n
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>
Diffstat (limited to 'sound/pci/hda/hda_intel.c')
-rw-r--r-- | sound/pci/hda/hda_intel.c | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/sound/pci/hda/hda_intel.c b/sound/pci/hda/hda_intel.c index 8aee322313ed..f2337e4eddda 100644 --- a/sound/pci/hda/hda_intel.c +++ b/sound/pci/hda/hda_intel.c | |||
@@ -1900,6 +1900,12 @@ static void azx_power_notify(struct hda_bus *bus) | |||
1900 | else if (chip->running && power_save_controller) | 1900 | else if (chip->running && power_save_controller) |
1901 | azx_stop_chip(chip); | 1901 | azx_stop_chip(chip); |
1902 | } | 1902 | } |
1903 | #endif /* CONFIG_SND_HDA_POWER_SAVE */ | ||
1904 | |||
1905 | #ifdef CONFIG_PM | ||
1906 | /* | ||
1907 | * power management | ||
1908 | */ | ||
1903 | 1909 | ||
1904 | static int snd_hda_codecs_inuse(struct hda_bus *bus) | 1910 | static int snd_hda_codecs_inuse(struct hda_bus *bus) |
1905 | { | 1911 | { |
@@ -1911,14 +1917,7 @@ static int snd_hda_codecs_inuse(struct hda_bus *bus) | |||
1911 | } | 1917 | } |
1912 | return 0; | 1918 | return 0; |
1913 | } | 1919 | } |
1914 | #else /* !CONFIG_SND_HDA_POWER_SAVE */ | ||
1915 | #define snd_hda_codecs_inuse(bus) 1 | ||
1916 | #endif /* CONFIG_SND_HDA_POWER_SAVE */ | ||
1917 | 1920 | ||
1918 | #ifdef CONFIG_PM | ||
1919 | /* | ||
1920 | * power management | ||
1921 | */ | ||
1922 | static int azx_suspend(struct pci_dev *pci, pm_message_t state) | 1921 | static int azx_suspend(struct pci_dev *pci, pm_message_t state) |
1923 | { | 1922 | { |
1924 | struct snd_card *card = pci_get_drvdata(pci); | 1923 | struct snd_card *card = pci_get_drvdata(pci); |