diff options
author | Taniya Das <tdas@codeaurora.org> | 2021-12-20 19:43:56 +0300 |
---|---|---|
committer | Stephen Boyd <sboyd@kernel.org> | 2022-01-06 03:04:07 +0300 |
commit | 9c337073d9d81a145434b22f42dc3128ecd17730 (patch) | |
tree | 5b9c3c38cd588a53987a47258e0b50129a8fbaff /drivers/clk | |
parent | a5273ed2fed221317203c120670fc9a09488be3b (diff) | |
download | linux-9c337073d9d81a145434b22f42dc3128ecd17730.tar.xz |
clk: qcom: gcc-sc7280: Mark gcc_cfg_noc_lpass_clk always enabled
The gcc cfg noc lpass clock is required to be always enabled for the
LPASS core and audio drivers to be functional.
Fixes: a3cc092196ef ("clk: qcom: Add Global Clock controller (GCC) driver for SC7280")
Signed-off-by: Taniya Das <tdas@codeaurora.org>
Link: https://lore.kernel.org/r/1640018638-19436-4-git-send-email-tdas@codeaurora.org
Signed-off-by: Stephen Boyd <sboyd@kernel.org>
Diffstat (limited to 'drivers/clk')
-rw-r--r-- | drivers/clk/qcom/gcc-sc7280.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/clk/qcom/gcc-sc7280.c b/drivers/clk/qcom/gcc-sc7280.c index 8fb6bd69f240..423627d49719 100644 --- a/drivers/clk/qcom/gcc-sc7280.c +++ b/drivers/clk/qcom/gcc-sc7280.c @@ -2917,7 +2917,7 @@ static struct clk_branch gcc_cfg_noc_lpass_clk = { .enable_mask = BIT(0), .hw.init = &(struct clk_init_data){ .name = "gcc_cfg_noc_lpass_clk", - .ops = &clk_branch2_ops, + .ops = &clk_branch2_aon_ops, }, }, }; |