]> git.baikalelectronics.ru Git - uboot.git/commit
clk: stm32mp1: remove error for disabled clock in stm32mp1_clk_get_parent
authorPatrick Delaunay <patrick.delaunay@foss.st.com>
Fri, 23 Jun 2023 13:05:16 +0000 (15:05 +0200)
committerPatrice Chotard <patrice.chotard@foss.st.com>
Wed, 16 Aug 2023 13:23:09 +0000 (15:23 +0200)
commitd59cdde93abca09ba90916ddb7a3b7702f508656
treeb42d7dbd74b6683d3c4e69328b7a4bf19ce37c5f
parent6b03c07ba9c7e33a0b9c7cf9807050afbed49be7
clk: stm32mp1: remove error for disabled clock in stm32mp1_clk_get_parent

To disabled a clock in clock tree initialization for a mux of STM32MP15,
the selected clock source index is set with the latest possible index for
the number of bit used. Today this valid configuration cause a error
in U-Boot messages, for example with CLK_ETH_DISABLED, when this clock
is not needed for the used ETH PHY without crystal:

   no parents defined for clk id 123

This patch change the level of this message to avoid this trace for
valid clock tree.

Signed-off-by: Patrick Delaunay <patrick.delaunay@foss.st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@foss.st.com>
drivers/clk/stm32/clk-stm32mp1.c