From: Yoshihiro Shimoda Date: Tue, 9 Sep 2008 08:52:47 +0000 (+0900) Subject: add board_eth_init() for sh7785lcr board X-Git-Tag: v2008.10-rc1~5 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=1d9b67b23fca6a25154333733204339802510720;p=oweals%2Fu-boot.git add board_eth_init() for sh7785lcr board Fix the problem that cannot work RTL8169 on sh7785lcr board. Signed-off-by: Yoshihiro Shimoda --- 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); +}