diff options
author | Bernhard Beschow <shentey@gmail.com> | 2024-08-14 20:15:32 +0200 |
---|---|---|
committer | Philippe Mathieu-Daudé <philmd@linaro.org> | 2024-08-20 00:49:14 +0200 |
commit | 6373fc0323c00fa9ee4719628ee63ab4dad159e5 (patch) | |
tree | 79c4a32777a6d838421afd47f2b3e37a35e39d65 | |
parent | 12d36294a2d978faf893101862118d1ac1815e85 (diff) | |
download | qemu-6373fc0323c00fa9ee4719628ee63ab4dad159e5.zip qemu-6373fc0323c00fa9ee4719628ee63ab4dad159e5.tar.gz qemu-6373fc0323c00fa9ee4719628ee63ab4dad159e5.tar.bz2 |
hw/ppc/Kconfig: Add missing SERIAL_ISA dependency to POWERNV machine
The machine calls serial_hds_isa_init() which is provided by serial-isa.c,
guarded by SERIAL_ISA.
Signed-off-by: Bernhard Beschow <shentey@gmail.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Message-ID: <20240814181534.218964-4-shentey@gmail.com>
Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
-rw-r--r-- | hw/ppc/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/hw/ppc/Kconfig b/hw/ppc/Kconfig index c235519..5addad1 100644 --- a/hw/ppc/Kconfig +++ b/hw/ppc/Kconfig @@ -39,6 +39,7 @@ config POWERNV select PCI_POWERNV select PCA9552 select PCA9554 + select SERIAL_ISA select SSI select SSI_M25P80 select PNV_SPI |