diff options
author | Sven Eckelmann <sven@narfation.org> | 2018-06-07 10:57:06 +0200 |
---|---|---|
committer | John Crispin <john@phrozen.org> | 2018-06-08 09:39:14 +0200 |
commit | 4f6320704f7e37368a1dae2deba767a73b3bf121 (patch) | |
tree | 626f50255a5bb43546de0fe55991759214a5d1f6 | |
parent | daf19649dbf101ce7ae17abf84eeed7a30b41275 (diff) | |
download | upstream-4f6320704f7e37368a1dae2deba767a73b3bf121.tar.gz upstream-4f6320704f7e37368a1dae2deba767a73b3bf121.tar.bz2 upstream-4f6320704f7e37368a1dae2deba767a73b3bf121.zip |
ar71xx: Fix offset to WMAC address for 8devices Lima
The ART partition of the Lima board stores exactly three mac addresses:
* 0x0: eth0
* 0x6: eth1
* 0x1002: wmac
The first two are correctly assigned in the mach file but the latter points
to 0x800. But this position is set to ff:ff:ff:ff:ff:ff. Luckily, the
driver falls back in ath9k_hw_init_macaddr to the EEPROM mac address when
it doesn't find a valid mac address in the platform_data.
Remove this bogus offset to the ART partition to directly load the wmac via
the EEPROM data in the ART partition.
Signed-off-by: Sven Eckelmann <sven@narfation.org>
-rw-r--r-- | target/linux/ar71xx/files/arch/mips/ath79/mach-lima.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/target/linux/ar71xx/files/arch/mips/ath79/mach-lima.c b/target/linux/ar71xx/files/arch/mips/ath79/mach-lima.c index 9c784f7921..9867429684 100644 --- a/target/linux/ar71xx/files/arch/mips/ath79/mach-lima.c +++ b/target/linux/ar71xx/files/arch/mips/ath79/mach-lima.c @@ -35,7 +35,6 @@ #define LIMA_MAC1_OFFSET 0x0006 #define LIMA_CALDATA_OFFSET 0x1000 -#define LIMA_WMAC_MAC_OFFSET 0x0800 static struct gpio_keys_button lima_gpio_keys[] __initdata = { { @@ -79,8 +78,7 @@ static void __init lima_setup(void) ath79_eth0_data.phy_mask = BIT(0); ath79_register_eth(0); - ath79_register_wmac(art + LIMA_CALDATA_OFFSET, - art + LIMA_WMAC_MAC_OFFSET); + ath79_register_wmac(art + LIMA_CALDATA_OFFSET, NULL); ath79_register_usb(); ath79_register_pci(); } |