2008-09-22 Joel Sherrill <joel.sherrill@oarcorp.com>

* include/bsp.h, network/network.c: Fix missed name change.
This commit is contained in:
Joel Sherrill
2008-09-22 17:07:02 +00:00
parent 00a2358559
commit ac4b164c8b
3 changed files with 9 additions and 5 deletions

View File

@@ -1,3 +1,7 @@
2008-09-22 Joel Sherrill <joel.sherrill@oarcorp.com>
* include/bsp.h, network/network.c: Fix missed name change.
2008-09-22 Thomas Doerfler <Thomas.Doerfler@embedded-brains.de> 2008-09-22 Thomas Doerfler <Thomas.Doerfler@embedded-brains.de>
* startup/bspstart.c: correct DEC click rate for non-U-Boot case * startup/bspstart.c: correct DEC click rate for non-U-Boot case

View File

@@ -94,7 +94,7 @@ extern "C" {
#include <bsp/u-boot.h> #include <bsp/u-boot.h>
extern bd_t bsp_uboot_board_info; extern bd_t bsp_uboot_board_info;
extern const size_t mpc83xx_uboot_board_info_size; extern const size_t bsp_uboot_board_info_size;
#endif /* HAS_UBOOT */ #endif /* HAS_UBOOT */

View File

@@ -128,24 +128,24 @@ int BSP_tsec_attach
switch (unitNumber) { switch (unitNumber) {
case 1: case 1:
config->hardware_address = mpc83xx_uboot_board_info.bi_enetaddr; config->hardware_address = bsp_uboot_board_info.bi_enetaddr;
break; break;
#ifdef CONFIG_HAS_ETH1 #ifdef CONFIG_HAS_ETH1
case 2: case 2:
config->hardware_address = mpc83xx_uboot_board_info.bi_enet1addr; config->hardware_address = bsp_uboot_board_info.bi_enet1addr;
break; break;
#endif /* CONFIG_HAS_ETH1 */ #endif /* CONFIG_HAS_ETH1 */
#ifdef CONFIG_HAS_ETH2 #ifdef CONFIG_HAS_ETH2
case 3: case 3:
config->hardware_address = mpc83xx_uboot_board_info.bi_enet2addr; config->hardware_address = bsp_uboot_board_info.bi_enet2addr;
break; break;
#endif /* CONFIG_HAS_ETH2 */ #endif /* CONFIG_HAS_ETH2 */
#ifdef CONFIG_HAS_ETH3 #ifdef CONFIG_HAS_ETH3
case 4: case 4:
config->hardware_address = mpc83xx_uboot_board_info.bi_enet3addr; config->hardware_address = bsp_uboot_board_info.bi_enet3addr;
break; break;
#endif /* CONFIG_HAS_ETH3 */ #endif /* CONFIG_HAS_ETH3 */