STM32F0: Ooops Missing semicolon

This commit is contained in:
Gregory Nutt 2017-04-17 08:57:00 -06:00
parent 0d9395588b
commit 55faedb40d

View File

@ -95,7 +95,7 @@ void stm32f0_clockconfig(void)
regval = getreg32(STM32F0_RCC_CFGR);
regval &= ~RCC_CFGR_PLLMUL_MASK;
regval |= RCC_CFGR_PLLMUL_CLKx6
regval |= RCC_CFGR_PLLMUL_CLKx6;
putreg32(regval, STM32F0_RCC_CFGR);
/* Enable the PLL */