aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTakashi Iwai <tiwai@suse.de>2006-07-27 15:50:14 +0200
committerJaroslav Kysela <perex@suse.cz>2006-09-23 10:39:11 +0200
commit9265d199616630c2eb993ffe40c9daef3d6873b3 (patch)
tree0c272b14f45d20386dd07555615b17d1634c0f94
parentbc6c531eb53de8a0ba355f76ce2bd28f58e46707 (diff)
downloadlinux-9265d199616630c2eb993ffe40c9daef3d6873b3.tar.gz
[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>
-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 2911a8adc1f238..ad947b4c04cce0 100644
--- a/sound/pci/cs5535audio/Makefile
+++ b/sound/pci/cs5535audio/Makefile
@@ -4,7 +4,7 @@
snd-cs5535audio-objs := cs5535audio.o cs5535audio_pcm.o
-ifdef CONFIG_PM
+ifeq ($(CONFIG_PM),y)
snd-cs5535audio-objs += cs5535audio_pm.o
endif