aboutsummaryrefslogtreecommitdiff
path: root/board/afeb9260
diff options
context:
space:
mode:
authorSergey Lapin <slapin@ossfans.org>2009-05-12 12:25:14 +0400
committerJean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>2009-05-13 01:17:17 +0200
commitc63254ef5628efe1c77cb2fdba20753f9666f55d (patch)
tree237f5ce503c1c91cdd2ee9177f00b9e7ebd2d1eb /board/afeb9260
parentf8ddcd58221cab63dd25c2324dd2032487f748b1 (diff)
AFEB9260 network fix
AFEB9260 uses PA10, PA11 for ETX2 and ETX3. Also, due to extarnal pull-up on IRQ line, Micrel PHY ID is 1 after reset sequence, not 0. Signed-off-by: Sergey Lapin <slapin@ossfans.org>
Diffstat (limited to 'board/afeb9260')
-rw-r--r--board/afeb9260/afeb9260.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/board/afeb9260/afeb9260.c b/board/afeb9260/afeb9260.c
index 024db2bbe..a247663bb 100644
--- a/board/afeb9260/afeb9260.c
+++ b/board/afeb9260/afeb9260.c
@@ -177,7 +177,7 @@ int board_eth_init(bd_t *bis)
{
int rc = 0;
#ifdef CONFIG_MACB
- rc = macb_eth_initialize(0, (void *)AT91SAM9260_BASE_EMAC, 0x00);
+ rc = macb_eth_initialize(0, (void *)AT91SAM9260_BASE_EMAC, 0x01);
#endif
return rc;
}