diff options
author | Thomas Huth <thuth@redhat.com> | 2024-04-15 08:56:54 +0200 |
---|---|---|
committer | Philippe Mathieu-Daudé <philmd@linaro.org> | 2024-04-25 12:48:12 +0200 |
commit | c1c350dc2ccbf92524754694547909e1455e4eef (patch) | |
tree | 385cc0bed9b4146ec8c826a7bbe72e7a557cd95d /hw/arm | |
parent | b8ff846ec88513112008bff3a4001c839fd50f03 (diff) | |
download | qemu-c1c350dc2ccbf92524754694547909e1455e4eef.zip qemu-c1c350dc2ccbf92524754694547909e1455e4eef.tar.gz qemu-c1c350dc2ccbf92524754694547909e1455e4eef.tar.bz2 |
hw: Fix problem with the A*MPCORE switches in the Kconfig files
A9MPCORE, ARM11MPCORE and A15MPCORE are defined twice, once in
hw/cpu/Kconfig and once in hw/arm/Kconfig. This is only possible
by accident, since hw/cpu/Kconfig is never included from hw/Kconfig.
Fix it by declaring the switches only in hw/cpu/Kconfig (since the
related files reside in the hw/cpu/ folder) and by making sure that
the file hw/cpu/Kconfig is now properly included from hw/Kconfig.
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Signed-off-by: Thomas Huth <thuth@redhat.com>
Message-ID: <20240415065655.130099-2-thuth@redhat.com>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Diffstat (limited to 'hw/arm')
-rw-r--r-- | hw/arm/Kconfig | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/hw/arm/Kconfig b/hw/arm/Kconfig index 893a7bf..d97015c 100644 --- a/hw/arm/Kconfig +++ b/hw/arm/Kconfig @@ -678,21 +678,6 @@ config ZAURUS select NAND select ECC -config A9MPCORE - bool - select A9_GTIMER - select A9SCU # snoop control unit - select ARM_GIC - select ARM_MPTIMER - -config A15MPCORE - bool - select ARM_GIC - -config ARM11MPCORE - bool - select ARM11SCU - config ARMSSE bool select ARM_V7M |