diff options
author | Philippe Mathieu-Daudé <philmd@linaro.org> | 2023-02-16 10:23:27 +0100 |
---|---|---|
committer | Peter Maydell <peter.maydell@linaro.org> | 2023-02-16 16:00:47 +0000 |
commit | f4880c2da4c8eadfee3f40b76af77f77574cebef (patch) | |
tree | 67afd39a538eb86195ecfec9e2e6e4228007b07c /hw/arm/Kconfig | |
parent | c2ecb424fb15ba0db0d9445721e6e8a8e79c4976 (diff) | |
download | qemu-f4880c2da4c8eadfee3f40b76af77f77574cebef.zip qemu-f4880c2da4c8eadfee3f40b76af77f77574cebef.tar.gz qemu-f4880c2da4c8eadfee3f40b76af77f77574cebef.tar.bz2 |
hw/arm: Add missing XLNX_ZYNQMP_ARM -> USB_DWC3 Kconfig dependency
Since commit acc0b8b05a when running the ZynqMP ZCU102 board with
a QEMU configured using --without-default-devices, we get:
$ qemu-system-aarch64 -M xlnx-zcu102
qemu-system-aarch64: missing object type 'usb_dwc3'
Abort trap: 6
Fix by adding the missing Kconfig dependency.
Fixes: acc0b8b05a ("hw/arm/xlnx-zynqmp: Connect ZynqMP's USB controllers")
Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Message-id: 20230216092327.2203-1-philmd@linaro.org
Reviewed-by: Francisco Iglesias <francisco.iglesias@amd.com>
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Diffstat (limited to 'hw/arm/Kconfig')
-rw-r--r-- | hw/arm/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/hw/arm/Kconfig b/hw/arm/Kconfig index 2d157de..b5aed4a 100644 --- a/hw/arm/Kconfig +++ b/hw/arm/Kconfig @@ -389,6 +389,7 @@ config XLNX_ZYNQMP_ARM select XLNX_CSU_DMA select XLNX_ZYNQMP select XLNX_ZDMA + select USB_DWC3 config XLNX_VERSAL bool |