summaryrefslogtreecommitdiffstats
path: root/target/linux/ar71xx/files/arch
diff options
context:
space:
mode:
authorGabor Juhos <juhosg@openwrt.org>2013-02-02 08:47:41 +0000
committerGabor Juhos <juhosg@openwrt.org>2013-02-02 08:47:41 +0000
commit31af0dc18617c4cecf12d18a4d058e6c84dce343 (patch)
tree28f078d0008ff8a367bc99811c6b619dd992c17f /target/linux/ar71xx/files/arch
parent257b21f2d40305f62cba9feb797eb5c3469810a8 (diff)
downloadmaster-31e0f0ae-31af0dc18617c4cecf12d18a4d058e6c84dce343.tar.gz
master-31e0f0ae-31af0dc18617c4cecf12d18a4d058e6c84dce343.tar.bz2
master-31e0f0ae-31af0dc18617c4cecf12d18a4d058e6c84dce343.zip
ar71xx: fix mac address calculation on the OpenMesh MR600
Signed-off-by: Marek Lindner <marek@open-mesh.com> Signed-off-by: Gabor Juhos <juhosg@openwrt.org> SVN-Revision: 35446
Diffstat (limited to 'target/linux/ar71xx/files/arch')
-rw-r--r--target/linux/ar71xx/files/arch/mips/ath79/mach-mr600.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/target/linux/ar71xx/files/arch/mips/ath79/mach-mr600.c b/target/linux/ar71xx/files/arch/mips/ath79/mach-mr600.c
index 8e3f6dac51..496956446b 100644
--- a/target/linux/ar71xx/files/arch/mips/ath79/mach-mr600.c
+++ b/target/linux/ar71xx/files/arch/mips/ath79/mach-mr600.c
@@ -140,10 +140,10 @@ static void __init mr600_base_setup(unsigned num_leds, struct gpio_led *leds)
ARRAY_SIZE(mr600_gpio_keys),
mr600_gpio_keys);
- ath79_init_mac(mac, art + MR600_MAC_OFFSET, -1);
+ ath79_init_mac(mac, art + MR600_MAC_OFFSET, 1);
ath79_register_wmac(art + MR600_WMAC_CALDATA_OFFSET, mac);
- ath79_init_mac(mac, art + MR600_MAC_OFFSET, -2);
+ ath79_init_mac(mac, art + MR600_MAC_OFFSET, 8);
ap91_pci_init(art + MR600_PCIE_CALDATA_OFFSET, mac);
ath79_setup_ar934x_eth_cfg(AR934X_ETH_CFG_RGMII_GMAC0 |
@@ -151,7 +151,7 @@ static void __init mr600_base_setup(unsigned num_leds, struct gpio_led *leds)
ath79_register_mdio(0, 0x0);
- ath79_init_mac(ath79_eth0_data.mac_addr, art + MR600_MAC_OFFSET, -2);
+ ath79_init_mac(ath79_eth0_data.mac_addr, art + MR600_MAC_OFFSET, 0);
/* GMAC0 is connected to an external PHY */
ath79_eth0_data.phy_if_mode = PHY_INTERFACE_MODE_RGMII;