diff options
author | Felix Fietkau <nbd@openwrt.org> | 2011-06-25 13:48:47 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2011-06-25 13:48:47 +0000 |
commit | 1ce73d5bdeecfecefeea026784fb227d97bb884d (patch) | |
tree | 990d17db05c9e2731b5e6423cce5c97a61ef53a3 /target/linux/ar71xx | |
parent | bc1ddab9e9e1afaa7c8a5ca3425e58d79df254f5 (diff) | |
download | upstream-1ce73d5bdeecfecefeea026784fb227d97bb884d.tar.gz upstream-1ce73d5bdeecfecefeea026784fb227d97bb884d.tar.bz2 upstream-1ce73d5bdeecfecefeea026784fb227d97bb884d.zip |
ar71xx: bring up secondary radio on wzr-hp-ag300h (fixes #9608)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@27282 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/ar71xx')
-rw-r--r-- | target/linux/ar71xx/files/arch/mips/ar71xx/mach-wzr-hp-ag300h.c | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/target/linux/ar71xx/files/arch/mips/ar71xx/mach-wzr-hp-ag300h.c b/target/linux/ar71xx/files/arch/mips/ar71xx/mach-wzr-hp-ag300h.c index 84d88ccdad..e75221749a 100644 --- a/target/linux/ar71xx/files/arch/mips/ar71xx/mach-wzr-hp-ag300h.c +++ b/target/linux/ar71xx/files/arch/mips/ar71xx/mach-wzr-hp-ag300h.c @@ -189,11 +189,13 @@ static struct spi_board_info ar71xx_spi_info[] = { static void __init wzrhpag300h_setup(void) { - u8 *eeprom = (u8 *) KSEG1ADDR(0x1f051000); - u8 *mac = eeprom + WZRHPAG300H_MAC_OFFSET; + u8 *eeprom1 = (u8 *) KSEG1ADDR(0x1f051000); + u8 *eeprom2 = (u8 *) KSEG1ADDR(0x1f055000); + u8 *mac1 = eeprom1 + WZRHPAG300H_MAC_OFFSET; + u8 *mac2 = eeprom2 + WZRHPAG300H_MAC_OFFSET; - ar71xx_init_mac(ar71xx_eth0_data.mac_addr, mac, 0); - ar71xx_init_mac(ar71xx_eth1_data.mac_addr, mac, 1); + ar71xx_init_mac(ar71xx_eth0_data.mac_addr, mac1, 0); + ar71xx_init_mac(ar71xx_eth1_data.mac_addr, mac2, 1); ar71xx_add_device_mdio(~(BIT(0) | BIT(4))); @@ -224,7 +226,7 @@ static void __init wzrhpag300h_setup(void) add_mtd_concat_notifier(); #endif - ap94_pci_init(eeprom, mac, NULL, NULL); + ap94_pci_init(eeprom1, mac1, eeprom2, mac2); } MIPS_MACHINE(AR71XX_MACH_WZR_HP_AG300H, "WZR-HP-AG300H", |