diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2019-09-16 21:27:25 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2019-10-23 21:16:35 -0400 |
commit | 7b792e40d51a5ee105c0d1b605b773cb44354d83 (patch) | |
tree | d33f87b14bafcad193f5b2bc8e847d1652b37438 | |
parent | a46244057cb02ad88e7e5fd2871afb85774974f4 (diff) | |
download | kutter-7b792e40d51a5ee105c0d1b605b773cb44354d83.tar.gz kutter-7b792e40d51a5ee105c0d1b605b773cb44354d83.tar.xz kutter-7b792e40d51a5ee105c0d1b605b773cb44354d83.zip |
stm32f0: Rename internal build symbol from MACH_STM32F0 to MACH_STM32F0_HAL
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
-rw-r--r-- | src/Kconfig | 2 | ||||
-rw-r--r-- | src/stm32f0/Kconfig | 4 | ||||
-rw-r--r-- | test/configs/stm32f0.config | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/src/Kconfig b/src/Kconfig index d065bc26..ef1fcfe5 100644 --- a/src/Kconfig +++ b/src/Kconfig @@ -21,7 +21,7 @@ choice bool "LPC176x (Smoothieboard)" config MACH_STM32 bool "STMicroelectronics STM32F1/F4" - config MACH_STM32F0 + config MACH_STM32F0_HAL bool "STMicroelectronics STM32F042" config MACH_PRU bool "Beaglebone PRU" diff --git a/src/stm32f0/Kconfig b/src/stm32f0/Kconfig index 5b285615..6914acfa 100644 --- a/src/stm32f0/Kconfig +++ b/src/stm32f0/Kconfig @@ -1,8 +1,8 @@ # Kconfig settings for STM32F0 processors -if MACH_STM32F0 +if MACH_STM32F0_HAL -config STM32F0_SELECT +config STM32F0_HAL_SELECT bool default y select HAVE_GPIO diff --git a/test/configs/stm32f0.config b/test/configs/stm32f0.config index c2d4a73a..c36964b1 100644 --- a/test/configs/stm32f0.config +++ b/test/configs/stm32f0.config @@ -1,2 +1,2 @@ # Base config file for STM32F0 ARM processor -CONFIG_MACH_STM32F0=y +CONFIG_MACH_STM32F0_HAL=y |