diff options
author | Peter Maydell <peter.maydell@linaro.org> | 2024-09-03 17:07:11 +0100 |
---|---|---|
committer | Peter Maydell <peter.maydell@linaro.org> | 2024-10-01 14:21:43 +0100 |
commit | 4dba046c062427d97e6bea007b9a4a0a930d392f (patch) | |
tree | 9b85fd5b6e831bef96c0f60e99bbde544dac85e7 /hw/arm/Kconfig | |
parent | 0012b18311cef69c645197f3add108b5e78cd794 (diff) |
hw/arm: Remove STRONGARM->PXA2XX dependency
Currently the STRONGARM KConfig symbol pulls in PXA2XX. Since we've now
removed all the true uses of PXA2XX, we'd like to remove the PXA2XX
symbol too. To permit that, make STRONGARM directly select the things
it truly depends on:
* pxa25x-timer
* SSI
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Tested-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Message-id: 20240903160751.4100218-14-peter.maydell@linaro.org
Diffstat (limited to 'hw/arm/Kconfig')
-rw-r--r-- | hw/arm/Kconfig | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/hw/arm/Kconfig b/hw/arm/Kconfig index c2452bd7b9..8f6cbf9485 100644 --- a/hw/arm/Kconfig +++ b/hw/arm/Kconfig @@ -175,6 +175,7 @@ config PXA2XX select SSI select USB_OHCI_SYSBUS select PCMCIA + select PXA2XX_TIMER config REALVIEW bool @@ -261,7 +262,8 @@ config STM32VLDISCOVERY config STRONGARM bool - select PXA2XX + select PXA2XX_TIMER + select SSI config COLLIE bool |