[source] ar71xx: fix Wallys DR344 ethernet MAC addresses offsets

LEDE Commits lede-commits at lists.infradead.org
Sun Mar 12 16:18:45 PDT 2017


pepe2k pushed a commit to source.git, branch master:
https://git.lede-project.org/09862bb006f0e382f3d476ebfda6c260822c2420

commit 09862bb006f0e382f3d476ebfda6c260822c2420
Author: Piotr Dymacz <pepe2k at gmail.com>
AuthorDate: Sun Mar 12 23:50:36 2017 +0100

    ar71xx: fix Wallys DR344 ethernet MAC addresses offsets
    
    Without this fix, ethernet interfaces on Wallys DR344 use random MAC
    addresses.
    
    Signed-off-by: Piotr Dymacz <pepe2k at gmail.com>
---
 target/linux/ar71xx/files/arch/mips/ath79/mach-dr344.c | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/target/linux/ar71xx/files/arch/mips/ath79/mach-dr344.c b/target/linux/ar71xx/files/arch/mips/ath79/mach-dr344.c
index e2155e3..c24e5aa 100644
--- a/target/linux/ar71xx/files/arch/mips/ath79/mach-dr344.c
+++ b/target/linux/ar71xx/files/arch/mips/ath79/mach-dr344.c
@@ -134,6 +134,7 @@ static struct mdio_board_info dr344_mdio0_info[] = {
 static void __init dr344_setup(void)
 {
 	u8 *art = (u8 *) KSEG1ADDR(0x1fff0000);
+	u8 *mac = (u8 *) KSEG1ADDR(0x1f03f810);
 
 	ath79_register_m25p80(NULL);
 	ath79_register_leds_gpio(-1, ARRAY_SIZE(dr344_leds_gpio),
@@ -158,8 +159,8 @@ static void __init dr344_setup(void)
 	ath79_register_mdio(1, 0x0);
 	ath79_register_mdio(0, 0x0);
 
-	ath79_init_mac(ath79_eth0_data.mac_addr, art + DR344_MAC0_OFFSET, 0);
-       ath79_init_mac(ath79_eth1_data.mac_addr, art + DR344_MAC1_OFFSET, 0);
+	ath79_init_mac(ath79_eth0_data.mac_addr, mac + DR344_MAC0_OFFSET, 0);
+	ath79_init_mac(ath79_eth1_data.mac_addr, mac + DR344_MAC1_OFFSET, 0);
 
 	ath79_setup_ar934x_eth_cfg(AR934X_ETH_CFG_RGMII_GMAC0 |
 				   AR934X_ETH_CFG_SW_ONLY_MODE);



More information about the lede-commits mailing list