This is a note to let you know that I've just added the patch titled clk: meson: s4: fix pwm_j_div parent clock to the 6.10-stable tree which can be found at: http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary The filename of the patch is: clk-meson-s4-fix-pwm_j_div-parent-clock.patch and it can be found in the queue-6.10 subdirectory. If you, or anyone else, feels it should not be added to the stable tree, please let <stable@xxxxxxxxxxxxxxx> know about it. commit 6df60edafe91f8301e000a7547f8bd5cb18b2f91 Author: Xianwei Zhao <xianwei.zhao@xxxxxxxxxxx> Date: Thu May 16 15:16:12 2024 +0800 clk: meson: s4: fix pwm_j_div parent clock [ Upstream commit c591745831e75b11ef19fb33c5c5a16e4d3f7fbf ] Update peripherals pwm_j_div's parent clock to pwm_j_mux Fixes: 57b55c76aaf1 ("clk: meson: S4: add support for Amlogic S4 SoC peripheral clock controller") Signed-off-by: Xianwei Zhao <xianwei.zhao@xxxxxxxxxxx> Link: https://lore.kernel.org/r/20240516071612.2978201-1-xianwei.zhao@xxxxxxxxxxx Signed-off-by: Jerome Brunet <jbrunet@xxxxxxxxxxxx> Signed-off-by: Sasha Levin <sashal@xxxxxxxxxx> diff --git a/drivers/clk/meson/s4-peripherals.c b/drivers/clk/meson/s4-peripherals.c index 5e17ca50ab091..73340c7e815e7 100644 --- a/drivers/clk/meson/s4-peripherals.c +++ b/drivers/clk/meson/s4-peripherals.c @@ -2978,7 +2978,7 @@ static struct clk_regmap s4_pwm_j_div = { .name = "pwm_j_div", .ops = &clk_regmap_divider_ops, .parent_hws = (const struct clk_hw *[]) { - &s4_pwm_h_mux.hw + &s4_pwm_j_mux.hw }, .num_parents = 1, .flags = CLK_SET_RATE_PARENT,