mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-22 23:12:32 +00:00
67d998e25d
Changelog: https://cdn.kernel.org/pub/linux/kernel/v5.x/ChangeLog-5.15.145
No patches needed a rebase.
23.05 backport:
Rebased patch mediatek/100-dts-update-mt7622-rfb1.patch due to
changes introduced in commit e37aa926447f ("arm64: dts: mediatek:
mt7622: fix memory node warning check") in version v5.15.143 and we
jumped over from v5.15.139 directly to v5.15.145.
Build system: x86_64
Build-tested: ramips/tplink_archer-a6-v3
Run-tested: ramips/tplink_archer-a6-v3
23.05 backport:
Stijn:
Compile-tested: ath79/generic, ipq40xx/generic, mvebu/cortexa72, ramips/mt{7621,7620,76x8}, realtek/rtl{838x,930x}, 86/64.
Run-tested: cortexa72 (RB5009UG+S+IN), mt7621 (EAP615-Wall v1), rtl838x (GS1900-10HP, GS1900-8HP, GS108T v3).
Petr:
Compile-tested: ipq807x, mvebu/cortexa9
Run-tested: turris-omnia, prpl-haze
Tested-by: Stijn Segers <foss@volatilesystems.org> [23.05 testing]
Signed-off-by: John Audia <therealgraysky@proton.me>
Signed-off-by: Petr Štetiar <ynezz@true.cz> [23.05 refresh]
(cherry picked from commit 8de4cc77a6
)
39 lines
1.4 KiB
Diff
39 lines
1.4 KiB
Diff
From 614d31c231c7707322b643f409eeb7e28adc7f8c Mon Sep 17 00:00:00 2001
|
|
From: Robert Marko <robimarko@gmail.com>
|
|
Date: Sun, 8 Jan 2023 13:36:28 +0100
|
|
Subject: [PATCH] clk: qcom: ipq8074: populate fw_name for usb3phy-s
|
|
|
|
Having only .name populated in parent_data for clocks which are only
|
|
globally searchable currently will not work as the clk core won't copy
|
|
that name if there is no .fw_name present as well.
|
|
|
|
So, populate .fw_name for usb3phy clocks in parent_data as they were
|
|
missed by me in ("clk: qcom: ipq8074: populate fw_name for all parents").
|
|
|
|
Fixes: ae55ad32e273 ("clk: qcom: ipq8074: convert to parent data")
|
|
Signed-off-by: Robert Marko <robimarko@gmail.com>
|
|
---
|
|
drivers/clk/qcom/gcc-ipq8074.c | 4 ++--
|
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
|
|
|
--- a/drivers/clk/qcom/gcc-ipq8074.c
|
|
+++ b/drivers/clk/qcom/gcc-ipq8074.c
|
|
@@ -928,7 +928,7 @@ static struct clk_rcg2 usb0_mock_utmi_cl
|
|
};
|
|
|
|
static const struct clk_parent_data gcc_usb3phy_0_cc_pipe_clk_xo[] = {
|
|
- { .name = "usb3phy_0_cc_pipe_clk" },
|
|
+ { .fw_name = "usb3phy_0_cc_pipe_clk", .name = "usb3phy_0_cc_pipe_clk" },
|
|
{ .fw_name = "xo", .name = "xo" },
|
|
};
|
|
|
|
@@ -996,7 +996,7 @@ static struct clk_rcg2 usb1_mock_utmi_cl
|
|
};
|
|
|
|
static const struct clk_parent_data gcc_usb3phy_1_cc_pipe_clk_xo[] = {
|
|
- { .name = "usb3phy_1_cc_pipe_clk" },
|
|
+ { .fw_name = "usb3phy_1_cc_pipe_clk", .name = "usb3phy_1_cc_pipe_clk" },
|
|
{ .fw_name = "xo", .name = "xo" },
|
|
};
|
|
|