diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2018-12-14 23:14:41 +0300 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2018-12-14 23:14:41 +0300 |
commit | 743e3c8f19db951ce9d20e6accb290444f4737a4 (patch) | |
tree | acf9419204e70dcb32f79930c9d60994aa80bc83 /drivers | |
parent | eb6cf9f8cb9dfacf6679f9d6c72aaf568a027edf (diff) | |
parent | 8a034aad4892baf82f8c9082f969c5ebc1143a05 (diff) | |
download | linux-743e3c8f19db951ce9d20e6accb290444f4737a4.tar.xz |
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
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/clk/qcom/gcc-qcs404.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/clk/qcom/gcc-qcs404.c b/drivers/clk/qcom/gcc-qcs404.c index ef1b267cb058..64da032bb9ed 100644 --- a/drivers/clk/qcom/gcc-qcs404.c +++ b/drivers/clk/qcom/gcc-qcs404.c @@ -297,7 +297,7 @@ static struct clk_alpha_pll gpll0_out_main = { .hw.init = &(struct clk_init_data){ .name = "gpll0_out_main", .parent_names = (const char *[]) - { "gpll0_sleep_clk_src" }, + { "cxo" }, .num_parents = 1, .ops = &clk_alpha_pll_ops, }, |