From 7c94a2c3f60f7ed6c6f6b21260808787c2b4eae3 Mon Sep 17 00:00:00 2001 From: yangwu Date: Sun, 16 Feb 2020 22:10:41 +0800 Subject: [PATCH] fix recursive macro dependency --- bsp/raspberry-pi/raspi3-64/driver/Kconfig | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/bsp/raspberry-pi/raspi3-64/driver/Kconfig b/bsp/raspberry-pi/raspi3-64/driver/Kconfig index 2deffef99c..e45d0a3ca2 100644 --- a/bsp/raspberry-pi/raspi3-64/driver/Kconfig +++ b/bsp/raspberry-pi/raspi3-64/driver/Kconfig @@ -27,16 +27,16 @@ menu "Hardware Drivers Config" menuconfig BSP_USING_SYSTIMER bool "Enable SYSTIMER" - select BSP_USING_SYSTIMER + select RT_USING_SYSTIMER default n - if BSP_USING_SYSTIMER - config RT_USING_SYSTIMER1 - bool "Enable sys timer1" - default n - config RT_USING_SYSTIMER3 - bool "Enable sys timer3" - default n + if RT_USING_SYSTIMER + config RT_USING_SYSTIMER1 + bool "Enable sys timer1" + default n + config RT_USING_SYSTIMER3 + bool "Enable sys timer3" + default n endif menuconfig BSP_USING_I2C