diff options
author | Ben Warren <biggerbadderben@gmail.com> | 2008-08-31 10:15:26 -0700 |
---|---|---|
committer | Ben Warren <biggerbadderben@gmail.com> | 2008-09-02 21:18:17 -0700 |
commit | 164846eeb25cb2a5ede7ab9371fdca7f4831a055 (patch) | |
tree | 79ef10ad970b8395b48b973990207238a1e2e051 /include | |
parent | 6aca145e067efe75398e9fac97822bd3700de0b2 (diff) | |
download | u-boot-imx-164846eeb25cb2a5ede7ab9371fdca7f4831a055.zip u-boot-imx-164846eeb25cb2a5ede7ab9371fdca7f4831a055.tar.gz u-boot-imx-164846eeb25cb2a5ede7ab9371fdca7f4831a055.tar.bz2 |
Moved initialization of 3COM Ethernet controller (AmigaOne) to board_eth_init()
Affected boards:
AmigaOneG3SE
Removed initialization of the driver from net/eth.c
Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/netdev.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/netdev.h b/include/netdev.h index 666d12d..0c16dd6 100644 --- a/include/netdev.h +++ b/include/netdev.h @@ -42,6 +42,7 @@ int cpu_eth_init(bd_t *bis); /* Driver initialization prototypes */ int bfin_EMAC_initialize(bd_t *bis); +int eth_3com_initialize (bd_t * bis); int greth_initialize(bd_t *bis); void gt6426x_eth_initialize(bd_t *bis); int macb_eth_initialize(int id, void *regs, unsigned int phy_addr); |