diff options
author | Ben Warren <biggerbadderben@gmail.com> | 2008-08-31 10:08:43 -0700 |
---|---|---|
committer | Ben Warren <biggerbadderben@gmail.com> | 2008-09-02 21:18:17 -0700 |
commit | e3090534d62045dcb73f5392bacc64a4e8e443dc (patch) | |
tree | 56082e3d3df96e5a1b6ce55304a29b5da40edeb5 /board/sc520_cdp | |
parent | b902b8dda5e1fd4d5fe2f202c71ee3521d2c40ed (diff) |
Moved initialization of PCNET Ethernet controller to board_eth_init()
Affected boards:
PN62
sc520_cdp
Removed initialization of the driver from net/eth.c
Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
Diffstat (limited to 'board/sc520_cdp')
-rw-r--r-- | board/sc520_cdp/sc520_cdp.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/board/sc520_cdp/sc520_cdp.c b/board/sc520_cdp/sc520_cdp.c index 8050aa6fee6..f21c73002fc 100644 --- a/board/sc520_cdp/sc520_cdp.c +++ b/board/sc520_cdp/sc520_cdp.c @@ -29,6 +29,7 @@ #include <asm/ic/sc520.h> #include <asm/ic/ali512x.h> #include <spi.h> +#include <netdev.h> DECLARE_GLOBAL_DATA_PTR; @@ -629,3 +630,8 @@ ssize_t spi_write(uchar *addr, int alen, uchar *buffer, int len) #endif return res; } + +int board_eth_init(bd_t *bis) +{ + return pci_eth_init(bis); +} |