From e4ea2c6429f76cf6042d40530c61afd98672a29a Mon Sep 17 00:00:00 2001 From: Giovanni Di Sirio Date: Tue, 25 Apr 2017 08:00:46 +0000 Subject: git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@10177 35acf78f-673a-0410-8e92-d51de3d6d3f4 --- os/hal/ports/STM32/STM32F4xx/hal_lld.c | 1 - os/hal/ports/STM32/STM32F7xx/hal_lld.c | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) (limited to 'os/hal/ports') diff --git a/os/hal/ports/STM32/STM32F4xx/hal_lld.c b/os/hal/ports/STM32/STM32F4xx/hal_lld.c index 69767e8c4..8bcc21085 100644 --- a/os/hal/ports/STM32/STM32F4xx/hal_lld.c +++ b/os/hal/ports/STM32/STM32F4xx/hal_lld.c @@ -244,7 +244,6 @@ void stm32_clock_init(void) { /* PLLSAI activation.*/ RCC->PLLSAICFGR = STM32_PLLSAIR | STM32_PLLSAIN | STM32_PLLSAIP | STM32_PLLSAIQ | STM32_PLLSAIM; - RCC->CR |= RCC_CR_PLLSAION; /* Waiting for PLL lock.*/ diff --git a/os/hal/ports/STM32/STM32F7xx/hal_lld.c b/os/hal/ports/STM32/STM32F7xx/hal_lld.c index 2b2bf1d2c..bf2366bd0 100644 --- a/os/hal/ports/STM32/STM32F7xx/hal_lld.c +++ b/os/hal/ports/STM32/STM32F7xx/hal_lld.c @@ -247,7 +247,7 @@ void stm32_clock_init(void) { /* PLLSAI activation.*/ RCC->PLLSAICFGR = STM32_PLLSAIR | STM32_PLLSAIQ | STM32_PLLSAIP | STM32_PLLSAIN; - RCC->CR |= RCC_CR_PLLSAION; + RCC->CR |= RCC_CR_PLLSAION; /* Waiting for PLL lock.*/ while (!(RCC->CR & RCC_CR_PLLSAIRDY)) -- cgit v1.2.3