Skip to content

Commit 2f20c85

Browse files
author
Yixun Lan
committed
clk: spacemit: k3: Fix PCIe clock register offset
The offset of PCIe Clock CTRL register for port B and C controller was wrongly swapped, correct it here. Fixes: 091d19c ("clk: spacemit: k3: extract common header") Acked-by: Conor Dooley <conor.dooley@microchip.com> Link: https://patch.msgid.link/20260511-06-pci-clk-fix-v2-2-c9a5e563bab3@kernel.org Signed-off-by: Yixun Lan <dlan@kernel.org>
1 parent d8a4cef commit 2f20c85

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

include/soc/spacemit/k3-syscon.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -168,8 +168,8 @@
168168
#define APMU_CPU_C2_CLK_CTRL 0x394
169169
#define APMU_CPU_C3_CLK_CTRL 0x208
170170
#define APMU_PCIE_CLK_RES_CTRL_A 0x1f0
171-
#define APMU_PCIE_CLK_RES_CTRL_B 0x1c8
172-
#define APMU_PCIE_CLK_RES_CTRL_C 0x1d0
171+
#define APMU_PCIE_CLK_RES_CTRL_B 0x1d0
172+
#define APMU_PCIE_CLK_RES_CTRL_C 0x1c8
173173
#define APMU_PCIE_CLK_RES_CTRL_D 0x1e0
174174
#define APMU_PCIE_CLK_RES_CTRL_E 0x1e8
175175
#define APMU_EMAC0_CLK_RES_CTRL 0x3e4

0 commit comments

Comments
 (0)