diff options
author | Wolfgang Denk <wd@denx.de> | 2008-02-16 00:42:44 +0100 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2008-02-16 00:42:44 +0100 |
commit | 5db6138565ad4da190f94e0bc1d89407d58a2ab2 (patch) | |
tree | 349d78d6c9f4e3188df7edd3061361434af9cf71 /net | |
parent | 30c6a241e88499f536e86d325759e29ba00ff67f (diff) | |
parent | 5561857aae9a5921772b18b571708956788148d8 (diff) | |
download | u-boot-imx-5db6138565ad4da190f94e0bc1d89407d58a2ab2.zip u-boot-imx-5db6138565ad4da190f94e0bc1d89407d58a2ab2.tar.gz u-boot-imx-5db6138565ad4da190f94e0bc1d89407d58a2ab2.tar.bz2 |
Merge branch 'master' of git://www.denx.de/git/u-boot-arm
Diffstat (limited to 'net')
-rw-r--r-- | net/eth.c | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -63,6 +63,7 @@ extern int atstk1000_eth_initialize(bd_t *); extern int atngw100_eth_initialize(bd_t *); extern int mcffec_initialize(bd_t*); extern int mcdmafec_initialize(bd_t*); +extern int at91cap9_eth_initialize(bd_t *); #ifdef CONFIG_API extern void (*push_packet)(volatile void *, int); @@ -283,6 +284,9 @@ int eth_initialize(bd_t *bis) #if defined(CONFIG_FSLDMAFEC) mcdmafec_initialize(bis); #endif +#if defined(CONFIG_AT91CAP9) + at91cap9_eth_initialize(bis); +#endif if (!eth_devices) { puts ("No ethernet found.\n"); |