mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-26 00:41:17 +00:00
c20bedf1f5
Changelog: https://cdn.kernel.org/pub/linux/kernel/v6.x/ChangeLog-6.1.64 Removed upstreamed: ixp4xx/patches-6.1/0001-mtd-cfi_cmdset_0001-Byte-swap-OTP-info.patch[1] mvebu/patches-6.1/106-Revert-i2c-pxa-move-to-generic-GPIO-recovery.patch[2] qualcommax/patches-6.1/0026-v6.7-clk-qcom-ipq8074-drop-the-CLK_SET_RATE_PARENT-flag-f.patch[3] Manually rebased: bcm27xx/patches-6.1/950-0111-MMC-added-alternative-MMC-driver.patch All other patches automatically rebased. 1. https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?h=v6.1.64&id=3b93096d29c5b9ca2af94be4ee9949c1767acf17 2. https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?h=v6.1.64&id=b3fd9db79e30d5eb5f76ef1f5b7e4f444af574ea 3. https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?h=v6.1.64&id=877080a3490102da26b8d969588159b2385f739e Build system: x86/64 Build-tested: x86/64/AMD Cezanne Run-tested: x86/64/AMD Cezanne Signed-off-by: John Audia <therealgraysky@proton.me>
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" },
|
|
};
|
|
|