diff options
| author | Andreas Böhler | 2024-10-28 17:52:02 +0000 |
|---|---|---|
| committer | Hauke Mehrtens | 2024-10-29 20:25:04 +0000 |
| commit | cbefc64cb33cc693fb551111021e95eb976b51bb (patch) | |
| tree | 31e87e834a78154e0b6706a19f34af019461a5f4 | |
| parent | 4929bafb0b9c48ac8c032afeabb4b2e98e507238 (diff) | |
| download | openwrt-cbefc64cb33cc693fb551111021e95eb976b51bb.tar.gz | |
ramips: Fix WiFi on Sercomm NA502 and NA502s
The WiFi chips are actually on PCIe1 and PCIe2, PCIe0 is empty. Fix the
assignment so that WiFi works properly again.
Signed-off-by: Andreas Böhler <dev@aboehler.at>
Link: https://github.com/openwrt/openwrt/pull/16807
Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
| -rw-r--r-- | target/linux/ramips/dts/mt7621_sercomm_na502.dts | 4 | ||||
| -rw-r--r-- | target/linux/ramips/dts/mt7621_sercomm_na502s.dts | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/target/linux/ramips/dts/mt7621_sercomm_na502.dts b/target/linux/ramips/dts/mt7621_sercomm_na502.dts index 049dd35fa7..a8a7f5e389 100644 --- a/target/linux/ramips/dts/mt7621_sercomm_na502.dts +++ b/target/linux/ramips/dts/mt7621_sercomm_na502.dts @@ -193,7 +193,7 @@ status = "okay"; }; -&pcie0 { +&pcie1 { wifi@0,0 { compatible = "mediatek,mt76"; reg = <0x0000 0 0 0 0>; @@ -203,7 +203,7 @@ }; }; -&pcie1 { +&pcie2 { wifi@0,0 { compatible = "mediatek,mt76"; reg = <0x0 0 0 0 0>; diff --git a/target/linux/ramips/dts/mt7621_sercomm_na502s.dts b/target/linux/ramips/dts/mt7621_sercomm_na502s.dts index e794ef8875..9d16449148 100644 --- a/target/linux/ramips/dts/mt7621_sercomm_na502s.dts +++ b/target/linux/ramips/dts/mt7621_sercomm_na502s.dts @@ -297,7 +297,7 @@ status = "okay"; }; -&pcie0 { +&pcie1 { wifi@0,0 { compatible = "mediatek,mt76"; reg = <0x0000 0 0 0 0>; @@ -307,7 +307,7 @@ }; }; -&pcie1 { +&pcie2 { wifi@0,0 { compatible = "mediatek,mt76"; reg = <0x0 0 0 0 0>; |