Skip to content

Commit

Permalink
clk: qcom: msm8960: fix ce3_core clk enable register
Browse files Browse the repository at this point in the history
[ Upstream commit 732d691 ]

This patch corrects the enable register offset which is actually 0x36cc
instead of 0x36c4

Signed-off-by: Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
Fixes: 5f77549 ("clk: qcom: Fully support apq8064 global clock control")
Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
Signed-off-by: Sasha Levin <sasha.levin@oracle.com>
  • Loading branch information
Srinivas-Kandagatla authored and sashalevin committed Jul 12, 2016
1 parent 35807de commit 66e0e45
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/clk/qcom/gcc-msm8960.c
Original file line number Diff line number Diff line change
Expand Up @@ -2756,7 +2756,7 @@ static struct clk_branch ce3_core_clk = {
.halt_reg = 0x2fdc,
.halt_bit = 5,
.clkr = {
.enable_reg = 0x36c4,
.enable_reg = 0x36cc,
.enable_mask = BIT(4),
.hw.init = &(struct clk_init_data){
.name = "ce3_core_clk",
Expand Down

0 comments on commit 66e0e45

Please sign in to comment.