diff options
author | Corey Minyard <cminyard@mvista.com> | 2021-05-18 15:51:24 -0500 |
---|---|---|
committer | Corey Minyard <cminyard@mvista.com> | 2021-06-17 07:10:32 -0500 |
commit | 246f530cdb5a93b5da6db2c2fb00549b4081d943 (patch) | |
tree | afabaef5474062ca556efb01ba48288f1754633e /hw/misc/meson.build | |
parent | 38848ce565849e5b867a5e08022b3c755039c11a (diff) | |
download | qemu-246f530cdb5a93b5da6db2c2fb00549b4081d943.zip qemu-246f530cdb5a93b5da6db2c2fb00549b4081d943.tar.gz qemu-246f530cdb5a93b5da6db2c2fb00549b4081d943.tar.bz2 |
adc: Move the zynq-xadc file to the adc directories
It's an ADC, put it where it belongs.
Cc: Edgar E. Iglesias <edgar.iglesias@gmail.com>
Cc: Alistair Francis <alistair@alistair23.me>
Cc: Peter Maydell <peter.maydell@linaro.org>
Cc: qemu-arm@nongnu.org
Signed-off-by: Corey Minyard <cminyard@mvista.com>
Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Tested-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Reviewed-by: Edgar E. Iglesias <edgar.iglesias@xilinx.com>
Diffstat (limited to 'hw/misc/meson.build')
-rw-r--r-- | hw/misc/meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/misc/meson.build b/hw/misc/meson.build index 66e1648..508fce5 100644 --- a/hw/misc/meson.build +++ b/hw/misc/meson.build @@ -84,7 +84,7 @@ softmmu_ss.add(when: 'CONFIG_RASPI', if_true: files( 'bcm2835_cprman.c', )) softmmu_ss.add(when: 'CONFIG_SLAVIO', if_true: files('slavio_misc.c')) -softmmu_ss.add(when: 'CONFIG_ZYNQ', if_true: files('zynq_slcr.c', 'zynq-xadc.c')) +softmmu_ss.add(when: 'CONFIG_ZYNQ', if_true: files('zynq_slcr.c')) softmmu_ss.add(when: 'CONFIG_XLNX_VERSAL', if_true: files('xlnx-versal-xramc.c')) softmmu_ss.add(when: 'CONFIG_STM32F2XX_SYSCFG', if_true: files('stm32f2xx_syscfg.c')) softmmu_ss.add(when: 'CONFIG_STM32F4XX_SYSCFG', if_true: files('stm32f4xx_syscfg.c')) |