diff options
author | Adrian Bunk <bunk@stusta.de> | 2007-07-10 05:34:32 -0400 |
---|---|---|
committer | Jaroslav Kysela <perex@suse.cz> | 2007-07-20 05:11:49 -0400 |
commit | 706568967c7d99a5975b2a21aacd791dc838ea8c (patch) | |
tree | 0a29f4517fdd2315b4e995d199581e620b5cd4a8 /sound/isa | |
parent | f95474ec05106a2af46220fbf8624adc17fcb3e7 (diff) |
[ALSA] fix SND_CS5530=y, ISA=n compilation
This patch fixes the following compile error with
CONFIG_SND_CS5530=y, CONFIG_ISA=n:
<-- snip -->
...
LD .tmp_vmlinux1
sound/built-in.o: In function 'snd_sb16_capture_trigger':
sb16_main.c:(.text+0x212ad): undefined reference to 'snd_sbdsp_command'
sb16_main.c:(.text+0x212cc): undefined reference to 'snd_sbdsp_command'
sb16_main.c:(.text+0x212f7): undefined reference to 'snd_sbdsp_command'
sound/built-in.o: In function 'snd_sb16_playback_trigger':
sb16_main.c:(.text+0x2136d): undefined reference to 'snd_sbdsp_command'
sb16_main.c:(.text+0x2138c): undefined reference to 'snd_sbdsp_command'
...
<-- snip -->
Signed-off-by: Adrian Bunk <bunk@stusta.de>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Signed-off-by: Jaroslav Kysela <perex@suse.cz>
Diffstat (limited to 'sound/isa')
-rw-r--r-- | sound/isa/Kconfig | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sound/isa/Kconfig b/sound/isa/Kconfig index b90ddabae2e9..ea5084abe60f 100644 --- a/sound/isa/Kconfig +++ b/sound/isa/Kconfig | |||
@@ -1,8 +1,5 @@ | |||
1 | # ALSA ISA drivers | 1 | # ALSA ISA drivers |
2 | 2 | ||
3 | menu "ISA devices" | ||
4 | depends on SND!=n && ISA && ISA_DMA_API | ||
5 | |||
6 | config SND_AD1848_LIB | 3 | config SND_AD1848_LIB |
7 | tristate | 4 | tristate |
8 | select SND_PCM | 5 | select SND_PCM |
@@ -24,6 +21,9 @@ config SND_SB16_DSP | |||
24 | select SND_PCM | 21 | select SND_PCM |
25 | select SND_SB_COMMON | 22 | select SND_SB_COMMON |
26 | 23 | ||
24 | menu "ISA devices" | ||
25 | depends on SND!=n && ISA && ISA_DMA_API | ||
26 | |||
27 | config SND_ADLIB | 27 | config SND_ADLIB |
28 | tristate "AdLib FM card" | 28 | tristate "AdLib FM card" |
29 | depends on SND | 29 | depends on SND |