aboutsummaryrefslogtreecommitdiff
path: root/hw/timer
diff options
context:
space:
mode:
authorPhilippe Mathieu-Daudé <f4bug@amsat.org>2021-02-21 23:56:25 +0100
committerLaurent Vivier <laurent@vivier.eu>2021-03-09 22:36:19 +0100
commit8ee08a6a282f4bbdd79744cad79aa87121db2e03 (patch)
tree1d5a220754f9f66a4ff31752087eabe844a6df1e /hw/timer
parentc39dd149601d0401496f3264bda9c91d274cd4a0 (diff)
downloadqemu-8ee08a6a282f4bbdd79744cad79aa87121db2e03.zip
qemu-8ee08a6a282f4bbdd79744cad79aa87121db2e03.tar.gz
qemu-8ee08a6a282f4bbdd79744cad79aa87121db2e03.tar.bz2
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/timer')
-rw-r--r--hw/timer/meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/timer/meson.build b/hw/timer/meson.build
index 26c2701..a237262 100644
--- a/hw/timer/meson.build
+++ b/hw/timer/meson.build
@@ -19,7 +19,7 @@ softmmu_ss.add(when: 'CONFIG_HPET', if_true: files('hpet.c'))
softmmu_ss.add(when: 'CONFIG_I8254', if_true: files('i8254_common.c', 'i8254.c'))
softmmu_ss.add(when: 'CONFIG_IMX', if_true: files('imx_epit.c'))
softmmu_ss.add(when: 'CONFIG_IMX', if_true: files('imx_gpt.c'))
-softmmu_ss.add(when: 'CONFIG_LM32', if_true: files('lm32_timer.c'))
+softmmu_ss.add(when: 'CONFIG_LM32_DEVICES', if_true: files('lm32_timer.c'))
softmmu_ss.add(when: 'CONFIG_MILKYMIST', if_true: files('milkymist-sysctl.c'))
softmmu_ss.add(when: 'CONFIG_MIPS_CPS', if_true: files('mips_gictimer.c'))
softmmu_ss.add(when: 'CONFIG_MSF2', if_true: files('mss-timer.c'))