diff options
author | Takashi Iwai <tiwai@suse.de> | 2006-07-27 09:50:14 -0400 |
---|---|---|
committer | Jaroslav Kysela <perex@suse.cz> | 2006-09-23 04:39:11 -0400 |
commit | 9265d199616630c2eb993ffe40c9daef3d6873b3 (patch) | |
tree | 0c272b14f45d20386dd07555615b17d1634c0f94 /sound/pci | |
parent | bc6c531eb53de8a0ba355f76ce2bd28f58e46707 (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')
-rw-r--r-- | sound/pci/cs5535audio/Makefile | 2 |
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 | ||
5 | snd-cs5535audio-objs := cs5535audio.o cs5535audio_pcm.o | 5 | snd-cs5535audio-objs := cs5535audio.o cs5535audio_pcm.o |
6 | 6 | ||
7 | ifdef CONFIG_PM | 7 | ifeq ($(CONFIG_PM),y) |
8 | snd-cs5535audio-objs += cs5535audio_pm.o | 8 | snd-cs5535audio-objs += cs5535audio_pm.o |
9 | endif | 9 | endif |
10 | 10 | ||