mirror of https://github.com/hak5/openwrt.git
40 lines
1.2 KiB
Diff
40 lines
1.2 KiB
Diff
|
--- a/arch/mips/bcm63xx/boards/board_bcm963xx.c
|
||
|
+++ b/arch/mips/bcm63xx/boards/board_bcm963xx.c
|
||
|
@@ -856,17 +856,6 @@ void __init board_prom_init(void)
|
||
|
}
|
||
|
|
||
|
bcm_gpio_writel(val, GPIO_MODE_REG);
|
||
|
-
|
||
|
- /* Generate MAC address for WLAN and
|
||
|
- * register our SPROM */
|
||
|
-#ifdef CONFIG_SSB_PCIHOST
|
||
|
- if (!board_get_mac_address(bcm63xx_sprom.il0mac)) {
|
||
|
- memcpy(bcm63xx_sprom.et0mac, bcm63xx_sprom.il0mac, ETH_ALEN);
|
||
|
- memcpy(bcm63xx_sprom.et1mac, bcm63xx_sprom.il0mac, ETH_ALEN);
|
||
|
- if (ssb_arch_set_fallback_sprom(&bcm63xx_sprom) < 0)
|
||
|
- printk(KERN_ERR "failed to register fallback SPROM\n");
|
||
|
- }
|
||
|
-#endif
|
||
|
}
|
||
|
|
||
|
/*
|
||
|
@@ -946,6 +935,18 @@ int __init board_register_devices(void)
|
||
|
!board_get_mac_address(board.enet1.mac_addr))
|
||
|
bcm63xx_enet_register(1, &board.enet1);
|
||
|
|
||
|
+ /* Generate MAC address for WLAN and
|
||
|
+ * register our SPROM, do this after registering enet devices
|
||
|
+ */
|
||
|
+#ifdef CONFIG_SSB_PCIHOST
|
||
|
+ if (!board_get_mac_address(bcm63xx_sprom.il0mac)) {
|
||
|
+ memcpy(bcm63xx_sprom.et0mac, bcm63xx_sprom.il0mac, ETH_ALEN);
|
||
|
+ memcpy(bcm63xx_sprom.et1mac, bcm63xx_sprom.il0mac, ETH_ALEN);
|
||
|
+ if (ssb_arch_set_fallback_sprom(&bcm63xx_sprom) < 0)
|
||
|
+ printk(KERN_ERR "failed to register fallback SPROM\n");
|
||
|
+ }
|
||
|
+#endif
|
||
|
+
|
||
|
if (board.has_ehci0)
|
||
|
bcm63xx_ehci_register();
|
||
|
|