diff options
author | Wolfgang Denk <wd@denx.de> | 2010-02-03 20:10:20 +0100 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2010-02-03 20:10:20 +0100 |
commit | 05c2f4fe2966daa960017a48a506328d01b0a089 (patch) | |
tree | b16577fabe03a57b0948551b6e4e664da61f17c0 /board/csb637/csb637.c | |
parent | 5c1a1a3069c194ac6509344e58f8c96779d2d197 (diff) | |
parent | c041e9d212162f6c85cd3b6a40ad6ba9d9292451 (diff) |
Merge branch 'master' of git://git.denx.de/u-boot-net
Diffstat (limited to 'board/csb637/csb637.c')
-rw-r--r-- | board/csb637/csb637.c | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/board/csb637/csb637.c b/board/csb637/csb637.c index fbc3c87..d7fdcc4 100644 --- a/board/csb637/csb637.c +++ b/board/csb637/csb637.c @@ -23,8 +23,12 @@ #include <common.h> #include <asm/arch/AT91RM9200.h> +#include <netdev.h> +#include <asm/io.h> +#if defined(CONFIG_DRIVER_ETHER) #include <at91rm9200_net.h> #include <bcm5221.h> +#endif DECLARE_GLOBAL_DATA_PTR; @@ -79,3 +83,12 @@ void at91rm9200_GetPhyInterface(AT91PS_PhyOps p_phyops) #endif #endif /* CONFIG_DRIVER_ETHER */ + +#ifdef CONFIG_DRIVER_AT91EMAC +int board_eth_init(bd_t *bis) +{ + int rc = 0; + rc = at91emac_register(bis, 0); + return rc; +} +#endif |