mirror of
https://github.com/torvalds/linux.git
synced 2024-11-22 04:02:20 +00:00
sound: Make CONFIG_SND depend on INDIRECT_IOMEM instead of UML
When building for the UM arch and neither INDIRECT_IOMEM=y, nor HAS_IOMEM=y is selected, it will fall back to the implementations from asm-generic/io.h for IO memcpy. But these fall-back functions just do a memcpy. So, instead of depending on UML, add dependency on 'HAS_IOMEM || INDIRECT_IOMEM'. Reviewed-by: Yann Sionneau <ysionneau@kalrayinc.com> Signed-off-by: Julian Vetter <jvetter@kalrayinc.com> Link: https://patch.msgid.link/20241010124601.700528-1-jvetter@kalrayinc.com Signed-off-by: Takashi Iwai <tiwai@suse.de>
This commit is contained in:
parent
122fe6e915
commit
ad6639f143
@ -1,7 +1,7 @@
|
|||||||
# SPDX-License-Identifier: GPL-2.0-only
|
# SPDX-License-Identifier: GPL-2.0-only
|
||||||
menuconfig SOUND
|
menuconfig SOUND
|
||||||
tristate "Sound card support"
|
tristate "Sound card support"
|
||||||
depends on HAS_IOMEM || UML
|
depends on HAS_IOMEM || INDIRECT_IOMEM
|
||||||
help
|
help
|
||||||
If you have a sound card in your computer, i.e. if it can say more
|
If you have a sound card in your computer, i.e. if it can say more
|
||||||
than an occasional beep, say Y.
|
than an occasional beep, say Y.
|
||||||
|
Loading…
Reference in New Issue
Block a user