forked from Imagelibrary/rtems
2008-09-22 Joel Sherrill <joel.sherrill@oarcorp.com>
* include/bsp.h, network/network.c: Fix missed name change.
This commit is contained in:
@@ -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>
|
||||
|
||||
* startup/bspstart.c: correct DEC click rate for non-U-Boot case
|
||||
|
||||
@@ -94,7 +94,7 @@ extern "C" {
|
||||
#include <bsp/u-boot.h>
|
||||
|
||||
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 */
|
||||
|
||||
|
||||
@@ -128,24 +128,24 @@ int BSP_tsec_attach
|
||||
|
||||
switch (unitNumber) {
|
||||
case 1:
|
||||
config->hardware_address = mpc83xx_uboot_board_info.bi_enetaddr;
|
||||
config->hardware_address = bsp_uboot_board_info.bi_enetaddr;
|
||||
break;
|
||||
|
||||
#ifdef CONFIG_HAS_ETH1
|
||||
case 2:
|
||||
config->hardware_address = mpc83xx_uboot_board_info.bi_enet1addr;
|
||||
config->hardware_address = bsp_uboot_board_info.bi_enet1addr;
|
||||
break;
|
||||
#endif /* CONFIG_HAS_ETH1 */
|
||||
|
||||
#ifdef CONFIG_HAS_ETH2
|
||||
case 3:
|
||||
config->hardware_address = mpc83xx_uboot_board_info.bi_enet2addr;
|
||||
config->hardware_address = bsp_uboot_board_info.bi_enet2addr;
|
||||
break;
|
||||
#endif /* CONFIG_HAS_ETH2 */
|
||||
|
||||
#ifdef CONFIG_HAS_ETH3
|
||||
case 4:
|
||||
config->hardware_address = mpc83xx_uboot_board_info.bi_enet3addr;
|
||||
config->hardware_address = bsp_uboot_board_info.bi_enet3addr;
|
||||
break;
|
||||
#endif /* CONFIG_HAS_ETH3 */
|
||||
|
||||
|
||||
Reference in New Issue
Block a user