Skip to content

Commit

Permalink
[ALSA] fix SND_CS5530=y, ISA=n compilation
Browse files Browse the repository at this point in the history
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 <[email protected]>
Signed-off-by: Takashi Iwai <[email protected]>
Signed-off-by: Jaroslav Kysela <[email protected]>
  • Loading branch information
AdrianBunk authored and Jaroslav Kysela committed Jul 20, 2007
1 parent f95474e commit 7065689
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions sound/isa/Kconfig
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
# ALSA ISA drivers

menu "ISA devices"
depends on SND!=n && ISA && ISA_DMA_API

config SND_AD1848_LIB
tristate
select SND_PCM
Expand All @@ -24,6 +21,9 @@ config SND_SB16_DSP
select SND_PCM
select SND_SB_COMMON

menu "ISA devices"
depends on SND!=n && ISA && ISA_DMA_API

config SND_ADLIB
tristate "AdLib FM card"
depends on SND
Expand Down

0 comments on commit 7065689

Please sign in to comment.