diff options
author | Greg Kurz | 2020-12-24 18:22:55 +0100 |
---|---|---|
committer | David Gibson | 2021-01-06 01:09:59 +0100 |
commit | 27d5caec4fc5987b89257d2160d042717001dad2 (patch) | |
tree | 2d7fcc1f5ec705cfecb8edf7d7c83030c9e6304c /hw/intc/Kconfig | |
parent | ppc: Fix build with --without-default-devices (diff) | |
download | qemu-27d5caec4fc5987b89257d2160d042717001dad2.tar.gz qemu-27d5caec4fc5987b89257d2160d042717001dad2.tar.xz qemu-27d5caec4fc5987b89257d2160d042717001dad2.zip |
ppc: Simplify reverse dependencies of POWERNV and PSERIES on XICS and XIVE
Have PSERIES to select XICS and XIVE, and directly check PSERIES
in hw/intc/meson.build to enable build of the XICS and XIVE sPAPR
backends, like POWERNV already does. This allows to get rid of the
intermediate XICS_SPAPR and XIVE_SPAPR.
Signed-off-by: Greg Kurz <groug@kaod.org>
Message-Id: <160883057560.253005.4206568349917633920.stgit@bahia.lan>
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
Diffstat (limited to 'hw/intc/Kconfig')
-rw-r--r-- | hw/intc/Kconfig | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/hw/intc/Kconfig b/hw/intc/Kconfig index fa2695e58d..c18d11142a 100644 --- a/hw/intc/Kconfig +++ b/hw/intc/Kconfig @@ -32,11 +32,9 @@ config ARM_GIC_KVM config XICS bool - depends on POWERNV || PSERIES -config XICS_SPAPR +config XIVE bool - select XICS config ALLWINNER_A10_PIC bool |