mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 17:08:10 +00:00
1661753568
Add missing HAS_IOMEM dependency to fix the allyesconfig build error on ARCH=um (for x86_64): drivers/platform/goldfish/pdev_bus.c: In function ‘goldfish_pdev_bus_probe’: drivers/platform/goldfish/pdev_bus.c:191:18: error: implicit declaration of function ‘ioremap’ [-Werror=implicit-function-declaration] pdev_bus_base = ioremap(pdev_bus_addr, pdev_bus_len); Signed-off-by: Krzysztof Kozlowski <k.kozlowski@samsung.com> Reviewed-by: Alan Cox <alan@linux.intel.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
24 lines
712 B
Text
24 lines
712 B
Text
menuconfig GOLDFISH
|
|
bool "Platform support for Goldfish virtual devices"
|
|
depends on X86_32 || X86_64 || ARM || ARM64 || MIPS
|
|
depends on HAS_IOMEM
|
|
---help---
|
|
Say Y here to get to see options for the Goldfish virtual platform.
|
|
This option alone does not add any kernel code.
|
|
|
|
Unless you are building for the Android Goldfish emulator say N here.
|
|
|
|
if GOLDFISH
|
|
|
|
config GOLDFISH_BUS
|
|
bool "Goldfish platform bus"
|
|
---help---
|
|
This is a virtual bus to host Goldfish Android Virtual Devices.
|
|
|
|
config GOLDFISH_PIPE
|
|
tristate "Goldfish virtual device for QEMU pipes"
|
|
---help---
|
|
This is a virtual device to drive the QEMU pipe interface used by
|
|
the Goldfish Android Virtual Device.
|
|
|
|
endif # GOLDFISH
|