Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

Merge tag 'clk-fixes-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux

Pull clk fixes from Stephen Boyd:

- a modified revert of a patch that made new choices come out for a
couple stm32 clk drivers that really always need to be there when
that particular machine is compiled in

- boot fix on i.MX for Stefan who noticed odd behavior from the
critical flag patch that came in during the merge window

* tag 'clk-fixes-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux:
clk: stm32: fix: stm32 clock drivers are not compiled by default
clk: imx6ull: use OSC clock during AXI rate change

+3 -5
+2 -4
drivers/clk/Kconfig
··· 266 266 Support for stm32mp157 SoC family clocks 267 267 268 268 config COMMON_CLK_STM32F 269 - bool "Clock driver for stm32f4 and stm32f7 SoC families" 270 - depends on MACH_STM32F429 || MACH_STM32F469 || MACH_STM32F746 269 + def_bool COMMON_CLK && (MACH_STM32F429 || MACH_STM32F469 || MACH_STM32F746) 271 270 help 272 271 ---help--- 273 272 Support for stm32f4 and stm32f7 SoC families clocks 274 273 275 274 config COMMON_CLK_STM32H7 276 - bool "Clock driver for stm32h7 SoC family" 277 - depends on MACH_STM32H743 275 + def_bool COMMON_CLK && MACH_STM32H743 278 276 help 279 277 ---help--- 280 278 Support for stm32h7 SoC family clocks
+1 -1
drivers/clk/imx/clk-imx6ul.c
··· 464 464 clk_set_rate(clks[IMX6UL_CLK_AHB], 99000000); 465 465 466 466 /* Change periph_pre clock to pll2_bus to adjust AXI rate to 264MHz */ 467 - clk_set_parent(clks[IMX6UL_CLK_PERIPH_CLK2_SEL], clks[IMX6UL_CLK_PLL3_USB_OTG]); 467 + clk_set_parent(clks[IMX6UL_CLK_PERIPH_CLK2_SEL], clks[IMX6UL_CLK_OSC]); 468 468 clk_set_parent(clks[IMX6UL_CLK_PERIPH], clks[IMX6UL_CLK_PERIPH_CLK2]); 469 469 clk_set_parent(clks[IMX6UL_CLK_PERIPH_PRE], clks[IMX6UL_CLK_PLL2_BUS]); 470 470 clk_set_parent(clks[IMX6UL_CLK_PERIPH], clks[IMX6UL_CLK_PERIPH_PRE]);