diff options
author | Stelian Pop <stelian@popies.net> | 2008-11-07 13:54:31 +0100 |
---|---|---|
committer | Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> | 2008-11-07 13:54:31 +0100 |
commit | d8003fa03733901b73d6c4667b4d80fc8eb1ddd3 (patch) | |
tree | 285f36d005fcbc110a5ff558c6d4f19800c631a0 /board/afeb9260 | |
parent | c91e17affa175ce06afa89b04752301eb4a61666 (diff) |
AT91: Replace AT91_BASE_EMAC by the board specific values.
AT91_BASE_EMAC is never used outside the board specific files,
so replace its usage by the board specific AT91xxx_BASE_EMAC.
Signed-off-by: Stelian Pop <stelian@popies.net>
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
Diffstat (limited to 'board/afeb9260')
-rw-r--r-- | board/afeb9260/afeb9260.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/board/afeb9260/afeb9260.c b/board/afeb9260/afeb9260.c index e6140ff6f3a..32445ab740e 100644 --- a/board/afeb9260/afeb9260.c +++ b/board/afeb9260/afeb9260.c @@ -237,7 +237,7 @@ int board_eth_init(bd_t *bis) { int rc = 0; #ifdef CONFIG_MACB - rc = macb_eth_initialize(0, (void *)AT91_BASE_EMAC, 0x01); + rc = macb_eth_initialize(0, (void *)AT91SAM9260_BASE_EMAC, 0x00); #endif return rc; } |