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

Configure Feed

Select the types of activity you want to include in your feed.

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

Pull clk fixes from Stephen Boyd:
"Two fixes for the new SM8150 and SM8250 Qualcomm clk drivers to fix a
randconfig build error and an incorrect parent mapping"

* tag 'clk-fixes-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux:
clk: qcom: gcc: Fix parent for gpll0_out_even
clk: qcom: sm8250 gcc depends on QCOM_GDSC

+2 -2
+1
drivers/clk/qcom/Kconfig
··· 377 377 378 378 config SM_GCC_8250 379 379 tristate "SM8250 Global Clock Controller" 380 + select QCOM_GDSC 380 381 help 381 382 Support for the global clock controller on SM8250 devices. 382 383 Say Y if you want to use peripheral devices such as UART,
+1 -2
drivers/clk/qcom/gcc-sm8150.c
··· 76 76 .clkr.hw.init = &(struct clk_init_data){ 77 77 .name = "gpll0_out_even", 78 78 .parent_data = &(const struct clk_parent_data){ 79 - .fw_name = "bi_tcxo", 80 - .name = "bi_tcxo", 79 + .hw = &gpll0.clkr.hw, 81 80 }, 82 81 .num_parents = 1, 83 82 .ops = &clk_trion_pll_postdiv_ops,