aboutsummaryrefslogtreecommitdiffstats
path: root/sound/pci/cs5535audio/Makefile
diff options
context:
space:
mode:
authorTakashi Iwai <tiwai@suse.de>2006-07-27 09:50:14 -0400
committerJaroslav Kysela <perex@suse.cz>2006-09-23 04:39:11 -0400
commit9265d199616630c2eb993ffe40c9daef3d6873b3 (patch)
tree0c272b14f45d20386dd07555615b17d1634c0f94 /sound/pci/cs5535audio/Makefile
parentbc6c531eb53de8a0ba355f76ce2bd28f58e46707 (diff)
[ALSA] Fix Makefile of cs5535audio
Use ifeq instead of ifdef in Makefile to make the maintenance of out-of-kernel tree easier. Signed-off-by: Takashi Iwai <tiwai@suse.de> Signed-off-by: Jaroslav Kysela <perex@suse.cz>
Diffstat (limited to 'sound/pci/cs5535audio/Makefile')
-rw-r--r--sound/pci/cs5535audio/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/pci/cs5535audio/Makefile b/sound/pci/cs5535audio/Makefile
index 2911a8adc1f2..ad947b4c04cc 100644
--- a/sound/pci/cs5535audio/Makefile
+++ b/sound/pci/cs5535audio/Makefile
@@ -4,7 +4,7 @@
4 4
5snd-cs5535audio-objs := cs5535audio.o cs5535audio_pcm.o 5snd-cs5535audio-objs := cs5535audio.o cs5535audio_pcm.o
6 6
7ifdef CONFIG_PM 7ifeq ($(CONFIG_PM),y)
8snd-cs5535audio-objs += cs5535audio_pm.o 8snd-cs5535audio-objs += cs5535audio_pm.o
9endif 9endif
10 10