Commit 687a765a authored by Linus Torvalds's avatar Linus Torvalds Committed by Linus Torvalds

Fix sound config files (makes xconfig happy)

parent a6dd0b0b
......@@ -19,13 +19,13 @@ if [ "$CONFIG_SND" != "n" ]; then
source sound/core/Config.in
source sound/drivers/Config.in
fi
if [ "$CONFIG_SND" != "n" -a "$CONFIG_ISA" == "y" ]; then
if [ "$CONFIG_SND" != "n" -a "$CONFIG_ISA" = "y" ]; then
source sound/isa/Config.in
fi
if [ "$CONFIG_SND" != "n" -a "$CONFIG_PCI" == "y" ]; then
if [ "$CONFIG_SND" != "n" -a "$CONFIG_PCI" = "y" ]; then
source sound/pci/Config.in
fi
if [ "$CONFIG_SND" != "n" -a "$CONFIG_PPC" == "y" ]; then
if [ "$CONFIG_SND" != "n" -a "$CONFIG_PPC" = "y" ]; then
source sound/ppc/Config.in
fi
......
......@@ -20,7 +20,7 @@ dep_tristate 'Sound Blaster 1.0/2.0/Pro (8-bit)' CONFIG_SND_SB8 $CONFIG_SND
dep_tristate 'Sound Blaster 16 (PnP)' CONFIG_SND_SB16 $CONFIG_SND
dep_tristate 'Sound Blaster AWE (32,64) (PnP)' CONFIG_SND_SBAWE $CONFIG_SND
if [ "$CONFIG_SND_SB16" != "n" -o "$CONFIG_SND_SBAWE" != "n" ]; then
dep_bool 'Sound Blaster 16/AWE CSP support' CONFIG_SND_SB16_CSP
dep_bool 'Sound Blaster 16/AWE CSP support' CONFIG_SND_SB16_CSP $CONFIG_SND
fi
dep_tristate 'Turtle Beach Maui,Tropez,Tropez+ (Wavefront)' CONFIG_SND_WAVEFRONT $CONFIG_SND
dep_tristate 'Avance Logic ALS100/ALS120' CONFIG_SND_ALS100 $CONFIG_SND
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment