From 1d9b67b23fca6a25154333733204339802510720 Mon Sep 17 00:00:00 2001 From: Yoshihiro Shimoda Date: Tue, 9 Sep 2008 17:52:47 +0900 Subject: [PATCH] add board_eth_init() for sh7785lcr board Fix the problem that cannot work RTL8169 on sh7785lcr board. Signed-off-by: Yoshihiro Shimoda --- board/sh7785lcr/sh7785lcr.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/board/sh7785lcr/sh7785lcr.c b/board/sh7785lcr/sh7785lcr.c index 5b9c403746..66b21f8496 100644 --- a/board/sh7785lcr/sh7785lcr.c +++ b/board/sh7785lcr/sh7785lcr.c @@ -21,6 +21,7 @@ #include #include #include +#include int checkboard(void) { @@ -49,3 +50,7 @@ void pci_init_board(void) pci_sh7780_init(&hose); } +int board_eth_init(bd_t *bis) +{ + return pci_eth_init(bis); +} -- 2.39.2