summaryrefslogtreecommitdiffstats
path: root/net
diff options
context:
space:
mode:
authorStelian Pop <stelian@popies.net>2008-03-26 20:52:28 +0100
committerJean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>2008-04-01 01:44:18 +0200
commita8a78f2d99dc1bd30dc3595da118539b506c6118 (patch)
tree469e2c9f740aa0b00ad6358ed74c110ab17478e4 /net
parent61106a565870ff503f92b251b94bd7afef889a04 (diff)
downloadtalos-obmc-uboot-a8a78f2d99dc1bd30dc3595da118539b506c6118.tar.gz
talos-obmc-uboot-a8a78f2d99dc1bd30dc3595da118539b506c6118.zip
Move at91cap9 specific files to at91sam9 directory
AT91CAP9 and AT91SAM9 SoCs are very close hardware wise, so a common infrastructure can be used. Let this infrastructure be named after the AT91SAM9 family, and move the existing AT91CAP9 files to the new place. Signed-off-by: Stelian Pop <stelian@popies.net>
Diffstat (limited to 'net')
-rw-r--r--net/eth.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/net/eth.c b/net/eth.c
index 16a6dcbd8c..1a98a91183 100644
--- a/net/eth.c
+++ b/net/eth.c
@@ -63,7 +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 *);
+extern int at91sam9_eth_initialize(bd_t *);
#ifdef CONFIG_API
extern void (*push_packet)(volatile void *, int);
@@ -285,7 +285,7 @@ int eth_initialize(bd_t *bis)
mcdmafec_initialize(bis);
#endif
#if defined(CONFIG_AT91CAP9)
- at91cap9_eth_initialize(bis);
+ at91sam9_eth_initialize(bis);
#endif
if (!eth_devices) {
OpenPOWER on IntegriCloud