mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-24 07:42:48 +02:00
ar71xx: fix mac address for 5GHz interface on WNDR3700
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18586 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
874e72b262
commit
52df74715b
@ -107,7 +107,9 @@ static struct ar71xx_pci_irq wndr3700_pci_irqs[] __initdata = {
|
||||
};
|
||||
|
||||
static struct ath9k_platform_data wndr3700_wmac0_data;
|
||||
static u8 wndr3700_wmac0_macaddr[6];
|
||||
static struct ath9k_platform_data wndr3700_wmac1_data;
|
||||
static u8 wndr3700_wmac1_macaddr[6];
|
||||
|
||||
static void wndr3700_pci_fixup(struct pci_dev *dev)
|
||||
{
|
||||
@ -201,15 +203,17 @@ static int wndr3700_pci_plat_dev_init(struct pci_dev *dev)
|
||||
|
||||
static void __init wndr3700_pci_init(void)
|
||||
{
|
||||
u8 *ee;
|
||||
u8 *ee = (u8 *) KSEG1ADDR(0x1fff0000);
|
||||
|
||||
ee = (u8 *) KSEG1ADDR(0x1fff1000);
|
||||
memcpy(wndr3700_wmac0_data.eeprom_data, ee,
|
||||
memcpy(wndr3700_wmac0_data.eeprom_data, ee + 0x1000,
|
||||
sizeof(wndr3700_wmac0_data.eeprom_data));
|
||||
memcpy(wndr3700_wmac0_macaddr, ee, sizeof(wndr3700_wmac0_macaddr));
|
||||
wndr3700_wmac0_data.macaddr = wndr3700_wmac0_macaddr;
|
||||
|
||||
ee = (u8 *) KSEG1ADDR(0x1fff5000);
|
||||
memcpy(wndr3700_wmac1_data.eeprom_data, ee,
|
||||
memcpy(wndr3700_wmac1_data.eeprom_data, ee + 0x5000,
|
||||
sizeof(wndr3700_wmac1_data.eeprom_data));
|
||||
memcpy(wndr3700_wmac1_macaddr, ee + 12, sizeof(wndr3700_wmac1_macaddr));
|
||||
wndr3700_wmac1_data.macaddr = wndr3700_wmac1_macaddr;
|
||||
|
||||
ar71xx_pci_plat_dev_init = wndr3700_pci_plat_dev_init;
|
||||
ar71xx_pci_init(ARRAY_SIZE(wndr3700_pci_irqs), wndr3700_pci_irqs);
|
||||
|
Loading…
Reference in New Issue
Block a user