File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -74,4 +74,9 @@ Patch List:
7474 Impacted file:
7575 stm32cube/stm32h5xx/drivers/src/stm32h5xx_hal_sdio.c
7676
77+ *Fix warning about extraneous parentheses when compiling with clang
78+ ST internal bug: 218364
79+ Impacted files:
80+ stm32cube/stm32h5xx/drivers/src/stm32h5xx_hal_rcc_ex.c
81+
7782 See release_note.html from STM32Cube
Original file line number Diff line number Diff line change @@ -3510,7 +3510,7 @@ uint32_t HAL_RCCEx_GetPeriphCLKFreq(uint64_t PeriphClk)
35103510 frequency = pll2_clocks .PLL2_Q_Frequency ;
35113511 }
35123512#if defined(RCC_USART2CLKSOURCE_PLL3Q )
3513- else if (( srcclk == RCC_USART2CLKSOURCE_PLL3Q ) )
3513+ else if (srcclk == RCC_USART2CLKSOURCE_PLL3Q )
35143514 {
35153515 HAL_RCCEx_GetPLL3ClockFreq (& pll3_clocks );
35163516 frequency = pll3_clocks .PLL3_Q_Frequency ;
You can’t perform that action at this time.
0 commit comments