diff options
author | Ben Warren <biggerbadderben@gmail.com> | 2008-08-31 10:13:34 -0700 |
---|---|---|
committer | Ben Warren <biggerbadderben@gmail.com> | 2008-09-02 21:18:17 -0700 |
commit | 6aca145e067efe75398e9fac97822bd3700de0b2 (patch) | |
tree | d8b8fe359483ed29ece36f2cb6e293479170dca0 /include | |
parent | e3090534d62045dcb73f5392bacc64a4e8e443dc (diff) | |
download | u-boot-6aca145e067efe75398e9fac97822bd3700de0b2.tar.gz u-boot-6aca145e067efe75398e9fac97822bd3700de0b2.tar.xz u-boot-6aca145e067efe75398e9fac97822bd3700de0b2.zip |
Moved initialization of GT6426x Ethernet controller to board_eth_init()
Affected boards:
EVB64260
P3G4
ZUMA
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 b1dadd84b3..666d12d389 100644 --- a/include/netdev.h +++ b/include/netdev.h @@ -43,6 +43,7 @@ int cpu_eth_init(bd_t *bis); /* Driver initialization prototypes */ int bfin_EMAC_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); int mcdmafec_initialize(bd_t *bis); int mcffec_initialize(bd_t *bis); |