From b31f9d7a4aea23a8a9d007356a2b61e503e69daa Mon Sep 17 00:00:00 2001 From: Linus Walleij Date: Tue, 17 Feb 2015 11:35:25 +0100 Subject: vexpress64: juno: support SMC9118 ethernet This configures the Juno board to enable ethernet using the SMSC9118 ethernet controller found in the board. Tested by TFTP-booting a kernel over ethernet. Signed-off-by: Linus Walleij --- board/armltd/vexpress64/vexpress64.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'board/armltd') diff --git a/board/armltd/vexpress64/vexpress64.c b/board/armltd/vexpress64/vexpress64.c index 5897318..20db812 100644 --- a/board/armltd/vexpress64/vexpress64.c +++ b/board/armltd/vexpress64/vexpress64.c @@ -143,5 +143,8 @@ int board_eth_init(bd_t *bis) #ifdef CONFIG_SMC91111 rc = smc91111_initialize(0, CONFIG_SMC91111_BASE); #endif +#ifdef CONFIG_SMC911X + rc = smc911x_initialize(0, CONFIG_SMC911X_BASE); +#endif return rc; } -- cgit v1.1