diff options
-rw-r--r-- | chip/stm32/clock-stm32f0.c | 3 | ||||
-rw-r--r-- | chip/stm32/clock-stm32f4.c | 3 |
2 files changed, 0 insertions, 6 deletions
diff --git a/chip/stm32/clock-stm32f0.c b/chip/stm32/clock-stm32f0.c index 2e7937514e..f4cd863fb1 100644 --- a/chip/stm32/clock-stm32f0.c +++ b/chip/stm32/clock-stm32f0.c @@ -426,9 +426,6 @@ void clock_enable_module(enum module_id module, int enable) STM32_RCC_APB2ENR &= ~STM32_RCC_APB2ENR_ADCEN; return; } - - CPRINTS("Module %d is not supported for clock %s", - module, enable ? "enable" : "disable"); } void rtc_init(void) diff --git a/chip/stm32/clock-stm32f4.c b/chip/stm32/clock-stm32f4.c index 5c92ab7725..1d1eff91e0 100644 --- a/chip/stm32/clock-stm32f4.c +++ b/chip/stm32/clock-stm32f4.c @@ -234,9 +234,6 @@ void clock_enable_module(enum module_id module, int enable) STM32_RCC_APB2ENR &= ~STM32_RCC_APB2ENR_ADC1EN; return; } - - CPRINTS("Module %d is not supported for clock %s", - module, enable ? "enable" : "disable"); } void rtc_init(void) |