After introduction and activation of STM32Cube LL based driver on F3 and L4 series, this commit removes the no more needed code for native driver for these soc. Change-Id: I266d1a3fc4b464cee34b1cc1a1a333c5bf923e41 Signed-off-by: Erwan Gouriou <erwan.gouriou@linaro.org>
13 lines
563 B
Makefile
13 lines
563 B
Makefile
obj-$(CONFIG_CLOCK_CONTROL_NRF5) += nrf5_power_clock.o
|
|
obj-$(CONFIG_CLOCK_CONTROL_QUARK_SE) += quark_se_clock_control.o
|
|
ifeq ($(CONFIG_CLOCK_CONTROL_STM32_CUBE),y)
|
|
obj-y += stm32_ll_clock.o
|
|
obj-$(CONFIG_SOC_SERIES_STM32L4X) += stm32l4x_ll_clock.o
|
|
obj-$(CONFIG_SOC_SERIES_STM32F3X) += stm32f3x_ll_clock.o
|
|
else
|
|
obj-$(CONFIG_CLOCK_CONTROL_STM32F10X) += stm32f10x_clock.o
|
|
obj-$(CONFIG_CLOCK_CONTROL_STM32F10X_CONN_LINE) += stm32f107xx_clock.o
|
|
obj-$(CONFIG_CLOCK_CONTROL_STM32F4X) += stm32f4x_clock.o
|
|
endif
|
|
obj-$(CONFIG_CLOCK_CONTROL_BEETLE) += beetle_clock_control.o
|