aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@linux-foundation.org>2022-07-24 09:33:13 -0700
committerLinus Torvalds <torvalds@linux-foundation.org>2022-07-24 09:33:13 -0700
commit714b82c18ba0d2e76e9c3fd7785ff5a060f5980b (patch)
tree6f83f0e3763d80b957d08326bbd885b87a9a92bf
parent515f71412bb73ebd7f41f90e1684fc80b8730789 (diff)
parent25c2a075eb6a3031813b6051bd10dfc22c36a2a4 (diff)
downloadlinux-714b82c18ba0d2e76e9c3fd7785ff5a060f5980b.tar.gz
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 more fix to set the correct IO mapping for a clk gate in the lan966x driver" * tag 'clk-fixes-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux: clk: lan966x: Fix the lan966x clock gate register address
-rw-r--r--drivers/clk/clk-lan966x.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/clk/clk-lan966x.c b/drivers/clk/clk-lan966x.c
index d1535ac13e8942..81cb90955d68b9 100644
--- a/drivers/clk/clk-lan966x.c
+++ b/drivers/clk/clk-lan966x.c
@@ -213,7 +213,7 @@ static int lan966x_gate_clk_register(struct device *dev,
hw_data->hws[i] =
devm_clk_hw_register_gate(dev, clk_gate_desc[idx].name,
- "lan966x", 0, base,
+ "lan966x", 0, gate_base,
clk_gate_desc[idx].bit_idx,
0, &clk_gate_lock);