diff options
| author | Aleksander Jan Bajkowski | 2025-09-26 15:10:19 +0000 |
|---|---|---|
| committer | Christian Marangi | 2025-09-29 10:05:10 +0000 |
| commit | a30daf8a0b3f3c25a46320f5e7932d01c63301ef (patch) | |
| tree | f4fe79dcbb897751a2f2d863f490ea3d0f793128 | |
| parent | dae30d83ea6b5b26851e935142d6a8cd32fd7d0c (diff) | |
| download | openwrt-a30daf8a0b3f3c25a46320f5e7932d01c63301ef.tar.gz | |
airoha: fix scuclk node for an7581
Add missing syscon compatible for scuclk node.
Fix the unit-address of the scuclk node.
This fixes the pcs driver error:
airoha-pcs 1fa08000.pcs: probe with driver airoha-pcs failed with error -22
airoha-pcs 1fa09000.pcs: probe with driver airoha-pcs failed with error -22
Fixes: c3d70b1 ("airoha: en7581: Add support for external PHY")
Signed-off-by: Aleksander Jan Bajkowski <olek2@wp.pl>
Signed-off-by: Chukun Pan <amadeus@jmu.edu.cn>
Link: https://github.com/openwrt/openwrt/pull/20190
Signed-off-by: Christian Marangi <ansuelsmth@gmail.com>
| -rw-r--r-- | target/linux/airoha/dts/an7581.dtsi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/target/linux/airoha/dts/an7581.dtsi b/target/linux/airoha/dts/an7581.dtsi index d713f35e54..af098249f9 100644 --- a/target/linux/airoha/dts/an7581.dtsi +++ b/target/linux/airoha/dts/an7581.dtsi @@ -490,8 +490,8 @@ reg = <0x0 0x1fbe3400 0x0 0xff>; }; - scuclk: clock-controller@1fa20000 { - compatible = "airoha,en7581-scu"; + scuclk: clock-controller@1fb00000 { + compatible = "airoha,en7581-scu", "syscon"; reg = <0x0 0x1fb00000 0x0 0x970>; #clock-cells = <1>; #reset-cells = <1>; |