mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-10 02:54:58 -06:00
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>
This commit is contained in:
parent
b8ff846ec8
commit
c1c350dc2c
3 changed files with 10 additions and 18 deletions
|
@ -1,8 +1,14 @@
|
|||
config ARM11MPCORE
|
||||
bool
|
||||
|
||||
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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue