diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2019-07-28 23:35:16 -0400 |
---|---|---|
committer | KevinOConnor <kevin@koconnor.net> | 2019-08-05 11:25:40 -0400 |
commit | fe065d72d00319adcc7e27a392193733dc566922 (patch) | |
tree | 735c64417c012d7b366b5c9ecf003f4399db5473 /src | |
parent | 8b9cc62359057a686929cc713ffe2931e2203946 (diff) | |
download | kutter-fe065d72d00319adcc7e27a392193733dc566922.tar.gz kutter-fe065d72d00319adcc7e27a392193733dc566922.tar.xz kutter-fe065d72d00319adcc7e27a392193733dc566922.zip |
stm32: Rename clock.c to stm32f4.c
Rename the clock.c file to stm32f4.c to make it more clear that the
code is specific to the stm32f4 chips.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'src')
-rw-r--r-- | src/stm32/Makefile | 2 | ||||
-rw-r--r-- | src/stm32/stm32f4.c (renamed from src/stm32/clock.c) | 0 |
2 files changed, 1 insertions, 1 deletions
diff --git a/src/stm32/Makefile b/src/stm32/Makefile index 24c60c58..017fdda1 100644 --- a/src/stm32/Makefile +++ b/src/stm32/Makefile @@ -23,7 +23,7 @@ src-y += generic/crc16_ccitt.c generic/armcm_irq.c generic/armcm_timer.c src-$(CONFIG_MACH_STM32F1) += ../lib/stm32f1/system_stm32f1xx.c src-$(CONFIG_MACH_STM32F1) += stm32/stm32f1.c src-$(CONFIG_MACH_STM32F4) += ../lib/stm32f4/system_stm32f4xx.c -src-$(CONFIG_MACH_STM32F4) += stm32/clock.c +src-$(CONFIG_MACH_STM32F4) += stm32/stm32f4.c src-$(CONFIG_HAVE_GPIO_ADC) += stm32/adc.c src-$(CONFIG_HAVE_GPIO_SPI) += stm32/spi.c src-$(CONFIG_USBSERIAL) += stm32/usbfs.c generic/usb_cdc.c diff --git a/src/stm32/clock.c b/src/stm32/stm32f4.c index d0a2f249..d0a2f249 100644 --- a/src/stm32/clock.c +++ b/src/stm32/stm32f4.c |