Message ID | 20241103234437.25639-1-yuriz@qrv-systems.net |
---|---|
State | New |
Delegated to: | Tom Rini |
Headers | show |
Series | [1/2] bios_emulator: don't select X86EMU_RAW_IO for BIOSEMU and SPL_BIOSEMU | expand |
diff --git a/drivers/bios_emulator/Kconfig b/drivers/bios_emulator/Kconfig index 3660576772..8f73d077f6 100644 --- a/drivers/bios_emulator/Kconfig +++ b/drivers/bios_emulator/Kconfig @@ -1,10 +1,8 @@ config BIOSEMU bool - select X86EMU_RAW_IO config SPL_BIOSEMU bool - select X86EMU_RAW_IO config X86EMU_RAW_IO bool
The X86EMU_RAW_IO mode can be used only on x86, so don't select this option always, and allow correct compilation of BIOSEMU on other architectures too. Signed-off-by: Yuri Zaporozhets <yuriz@qrv-systems.net> --- drivers/bios_emulator/Kconfig | 2 -- 1 file changed, 2 deletions(-)