diff options
author | Philippe Mathieu-Daudé | 2021-02-21 23:56:25 +0100 |
---|---|---|
committer | Laurent Vivier | 2021-03-09 22:36:19 +0100 |
commit | 8ee08a6a282f4bbdd79744cad79aa87121db2e03 (patch) | |
tree | 1d5a220754f9f66a4ff31752087eabe844a6df1e /hw/intc | |
parent | hw/lm32/Kconfig: Introduce CONFIG_LM32_EVR for lm32-evr/uclinux boards (diff) | |
download | qemu-8ee08a6a282f4bbdd79744cad79aa87121db2e03.tar.gz qemu-8ee08a6a282f4bbdd79744cad79aa87121db2e03.tar.xz qemu-8ee08a6a282f4bbdd79744cad79aa87121db2e03.zip |
hw/lm32/Kconfig: Rename CONFIG_LM32 -> CONFIG_LM32_DEVICES
We want to be able to use the 'LM32' config for architecture
specific features. As CONFIG_LM32 is only used to select
peripherals, rename it CONFIG_LM32_DEVICES.
Reviewed-by: Alex Bennée <alex.bennee@linaro.org>
Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Message-Id: <20210221225626.2589247-3-f4bug@amsat.org>
Signed-off-by: Laurent Vivier <laurent@vivier.eu>
Diffstat (limited to 'hw/intc')
-rw-r--r-- | hw/intc/meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/intc/meson.build b/hw/intc/meson.build index b3d9345a0d..8df3656419 100644 --- a/hw/intc/meson.build +++ b/hw/intc/meson.build @@ -14,7 +14,7 @@ softmmu_ss.add(when: 'CONFIG_HEATHROW_PIC', if_true: files('heathrow_pic.c')) softmmu_ss.add(when: 'CONFIG_I8259', if_true: files('i8259_common.c', 'i8259.c')) softmmu_ss.add(when: 'CONFIG_IMX', if_true: files('imx_avic.c', 'imx_gpcv2.c')) softmmu_ss.add(when: 'CONFIG_IOAPIC', if_true: files('ioapic_common.c')) -softmmu_ss.add(when: 'CONFIG_LM32', if_true: files('lm32_pic.c')) +softmmu_ss.add(when: 'CONFIG_LM32_DEVICES', if_true: files('lm32_pic.c')) softmmu_ss.add(when: 'CONFIG_OPENPIC', if_true: files('openpic.c')) softmmu_ss.add(when: 'CONFIG_PL190', if_true: files('pl190.c')) softmmu_ss.add(when: 'CONFIG_PUV3', if_true: files('puv3_intc.c')) |