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 fix from Stephen Boyd:
"One fix for the qcom QCS404 clk driver that was merged for this
release.

It specified the wrong parent for a PLL so a part of the clk tree
wasn't rooted correctly. This fixes it by using the right name"

* tag 'clk-fixes-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux:
clk: qcom: qcs404: Fix gpll0_out_main parent

+1 -1
+1 -1
drivers/clk/qcom/gcc-qcs404.c
··· 297 297 .hw.init = &(struct clk_init_data){ 298 298 .name = "gpll0_out_main", 299 299 .parent_names = (const char *[]) 300 - { "gpll0_sleep_clk_src" }, 300 + { "cxo" }, 301 301 .num_parents = 1, 302 302 .ops = &clk_alpha_pll_ops, 303 303 },