diff options
author | Ilko Iliev <iliev@ronetix.at> | 2009-09-05 02:51:34 +0200 |
---|---|---|
committer | Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> | 2009-09-05 02:58:42 +0200 |
commit | e830b66b3592f115316600d370399f3ee148e909 (patch) | |
tree | b203bfa1dbc728f5485f301d0e570cccd488b715 /board | |
parent | c35d7cf071f171bd6bba69f1563a6ac578a18ea6 (diff) | |
download | u-boot-imx-e830b66b3592f115316600d370399f3ee148e909.zip u-boot-imx-e830b66b3592f115316600d370399f3ee148e909.tar.gz u-boot-imx-e830b66b3592f115316600d370399f3ee148e909.tar.bz2 |
DM9000 init for pm9261
Signed-off-by: Ilko Iliev <iliev@ronetix.at>
Diffstat (limited to 'board')
-rw-r--r-- | board/ronetix/pm9261/pm9261.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/board/ronetix/pm9261/pm9261.c b/board/ronetix/pm9261/pm9261.c index 4694854..6915b9b 100644 --- a/board/ronetix/pm9261/pm9261.c +++ b/board/ronetix/pm9261/pm9261.c @@ -250,6 +250,13 @@ int board_init(void) return 0; } +#ifdef CONFIG_DRIVER_DM9000 +int board_eth_init(bd_t *bis) +{ + return dm9000_initialize(bis); +} +#endif + int dram_init(void) { gd->bd->bi_dram[0].start = PHYS_SDRAM; |