diff options
author | Stelian Pop <stelian@popies.net> | 2008-03-26 18:52:33 +0100 |
---|---|---|
committer | Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> | 2008-04-01 01:46:12 +0200 |
commit | 0176d43e759a6e00cacc85eff26fd60f74b4f6b7 (patch) | |
tree | b181c51bf4dca090faecd5bbeb5b95acbeab120e /net/eth.c | |
parent | 1762f13b4aab88b685b1722f17dada247945624b (diff) |
Add support for AT91SAM9260EK
Support for booting from internal DataFlash, external DataFlash card
or NAND flash is available.
Signed-off-by: Stelian Pop <stelian@popies.net>
Diffstat (limited to 'net/eth.c')
-rw-r--r-- | net/eth.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/eth.c b/net/eth.c index 1a98a911833..99897ca476a 100644 --- a/net/eth.c +++ b/net/eth.c @@ -284,7 +284,7 @@ int eth_initialize(bd_t *bis) #if defined(CONFIG_FSLDMAFEC) mcdmafec_initialize(bis); #endif -#if defined(CONFIG_AT91CAP9) +#if defined(CONFIG_AT91CAP9) || defined(CONFIG_AT91SAM9260) at91sam9_eth_initialize(bis); #endif |