diff options
| author | Kunihiko Hayashi <[email protected]> | 2025-09-10 18:23:27 +0900 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2025-09-19 11:55:29 -0600 |
| commit | edaaedb5dd0fee9fcdfe41d92659914dc9d1d44d (patch) | |
| tree | 980b63502cf2f6c16fd8cb66b202b5a1ad713087 /board/emulation | |
| parent | e246e2b65885e6d5fd052ec2acdf2b07a53171f0 (diff) | |
board: qemu-sbsa: Fix mistyped GICV3 definition
The config "GIC_V3" seems to be typo, and currently "GICV3" remains
disabled. Since "GIC_V3_ITS" is enabled in qemu-sbsa, "GICV3" should
also be enabled.
Fixes: 6d722894fd48 ("board: emulation: Add QEMU sbsa support")
Signed-off-by: Kunihiko Hayashi <[email protected]>
Diffstat (limited to 'board/emulation')
| -rw-r--r-- | board/emulation/qemu-sbsa/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/board/emulation/qemu-sbsa/Kconfig b/board/emulation/qemu-sbsa/Kconfig index 9ea6303ec9c..1f058a43932 100644 --- a/board/emulation/qemu-sbsa/Kconfig +++ b/board/emulation/qemu-sbsa/Kconfig @@ -34,7 +34,7 @@ config BOARD_SPECIFIC_OPTIONS # dummy select PCIE_ECAM_GENERIC select SYS_PCI_64BIT select USB - select GIC_V3 + select GICV3 select GIC_V3_ITS select SYS_FLASH_CFI_WIDTH_16BIT imply AHCI_GENERIC |
