diff options
| author | Christian Lamparter | 2018-08-15 15:53:48 +0000 |
|---|---|---|
| committer | Christian Lamparter | 2019-12-07 11:01:23 +0000 |
| commit | a4286066462253aaa270ba902e52c167f5fac1c0 (patch) | |
| tree | a99133b76e0786d3b2a493fdf9423ee3233fc6f8 | |
| parent | 39d9010c20a08ac1ac48f1bec4332bfd92d8b1a6 (diff) | |
| download | openwrt-a4286066462253aaa270ba902e52c167f5fac1c0.tar.gz | |
ath79: fix WNDR3700/WNDR3800 wifi reg size
"[...] the size component shall be zero."
(See "PCI Bus Binding to: IEEE Std 1275-1994 Rev 2.1"
section "4.1.1 Open Firmware-defined Properties for Child Nodes")
Signed-off-by: Christian Lamparter <chunkeey@gmail.com>
| -rw-r--r-- | target/linux/ath79/dts/ar7161_netgear_wndr3700.dtsi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/target/linux/ath79/dts/ar7161_netgear_wndr3700.dtsi b/target/linux/ath79/dts/ar7161_netgear_wndr3700.dtsi index 7d842af060..08b3c77b39 100644 --- a/target/linux/ath79/dts/ar7161_netgear_wndr3700.dtsi +++ b/target/linux/ath79/dts/ar7161_netgear_wndr3700.dtsi @@ -156,7 +156,7 @@ ath9k0: wifi@0,11 { compatible = "pci168c,0029"; - reg = <0x8800 0 0 0 0x10000>; + reg = <0x8800 0 0 0 0>; mtd-mac-address = <&art 0x0>; qca,no-eeprom; #gpio-cells = <2>; @@ -165,7 +165,7 @@ ath9k1: wifi@0,12 { compatible = "pci168c,0029"; - reg = <0x9000 0 0 0 0x10000>; + reg = <0x9000 0 0 0 0>; mtd-mac-address = <&art 0xc>; qca,no-eeprom; #gpio-cells = <2>; |