diff options
| author | Chuanhong Guo | 2019-02-19 06:27:08 +0000 |
|---|---|---|
| committer | Christian Lamparter | 2019-02-20 17:51:31 +0000 |
| commit | 3bd871ad52a976e3fe5dc338cf247312777444c5 (patch) | |
| tree | 357aa9af11690348bcd1e26d8a7d185b0c251316 | |
| parent | d38789b5597fd5cab429a4708393fa8f72ffc23e (diff) | |
| download | openwrt-3bd871ad52a976e3fe5dc338cf247312777444c5.tar.gz | |
ath79: fix wmac memory region for qca953x
According to /arch/mips/include/asm/mach-ath79/ar71xx_regs.h
the size of wmac register range for qca953x is only 0x20000.
Signed-off-by: Chuanhong Guo <gch981213@gmail.com>
| -rw-r--r-- | target/linux/ath79/dts/qca953x.dtsi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target/linux/ath79/dts/qca953x.dtsi b/target/linux/ath79/dts/qca953x.dtsi index 4ce5bfe0a2..669e3fb851 100644 --- a/target/linux/ath79/dts/qca953x.dtsi +++ b/target/linux/ath79/dts/qca953x.dtsi @@ -173,7 +173,7 @@ wmac: wmac@18100000 { compatible = "qca,qca9530-wmac"; - reg = <0x18100000 0x230000>; + reg = <0x18100000 0x20000>; interrupt-parent = <&intc2>; interrupts = <0>; |