Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

sound: Fix make allmodconfig on MIPS correctly

Commit d4702b189c ("sound: Fix make allmodconfig on MIPS") added a
(negative) dependency on ISA_DMA_SUPPORT_BROKEN. Since that Kconfig
symbol doesn't exist, this dependency will always evaluate to true.
Apparently GENERIC_ISA_DMA_SUPPORT_BROKEN was meant to be used here.

Signed-off-by: Paul Bolle <pebolle@tiscali.nl>
Signed-off-by: Takashi Iwai <tiwai@suse.de>

authored by

Paul Bolle and committed by
Takashi Iwai
a62ee234 f722406f

+1 -1
+1 -1
sound/oss/Kconfig
··· 250 250 menuconfig SOUND_OSS 251 251 tristate "OSS sound modules" 252 252 depends on ISA_DMA_API && VIRT_TO_BUS 253 - depends on !ISA_DMA_SUPPORT_BROKEN 253 + depends on !GENERIC_ISA_DMA_SUPPORT_BROKEN 254 254 help 255 255 OSS is the Open Sound System suite of sound card drivers. They make 256 256 sound programming easier since they provide a common API. Say Y or