From 163d1634a794e843e19783c07cf66a88a56c3f51 Mon Sep 17 00:00:00 2001 From: Victor Arino Date: Thu, 13 Oct 2016 09:32:18 +0200 Subject: [PATCH] cpu/stm32f1: remove unnecessary line --- cpu/stm32f1/cpu.c | 1 - 1 file changed, 1 deletion(-) diff --git a/cpu/stm32f1/cpu.c b/cpu/stm32f1/cpu.c index e30ef52e07..89d69198ed 100644 --- a/cpu/stm32f1/cpu.c +++ b/cpu/stm32f1/cpu.c @@ -111,7 +111,6 @@ static void clk_init(void) /* PCLK1 = HCLK */ RCC->CFGR |= (uint32_t)CLOCK_APB1_DIV; /* PLL configuration: PLLCLK = CLOCK_SOURCE / PLL_DIV * PLL_MUL */ - RCC->CFGR &= ~((uint32_t)(RCC_CFGR_PLLSRC | RCC_CFGR_PLLXTPRE | RCC_CFGR_PLLMULL)); RCC->CFGR |= (uint32_t)(CLOCK_PLL_SOURCE | CLOCK_PLL_DIVMSK | ((CLOCK_PLL_MUL - 2) << 18)); /* Enable PLL */ RCC->CR |= RCC_CR_PLLON;