diff options
author | wdenk | 2004-02-07 01:27:10 +0000 |
---|---|---|
committer | wdenk | 2004-02-07 01:27:10 +0000 |
commit | f4863a7aec41f1f78fe93eade700b15b287a5ef7 (patch) | |
tree | 12822de96f90354447a6b7a7f36bbc06f46cc57e /lib_mips | |
parent | ba56f625767d058b0e05a22729de13be5e0f6334 (diff) |
* Patch by liang a lei, 9 Jan 2004:
Fix Intel 28F128J3 ID in include/flash.h
* Patch by Masami Komiya, 09 Jan 2004:
add support for TB0229 board (NEC VR4131 MIPS processor)
* Patch by Leon Kukovec, 12 Dec 2003:
changed extern __inline__ into static __inline__ in
include/linux/byteorder/swab.h
Diffstat (limited to 'lib_mips')
-rw-r--r-- | lib_mips/board.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/lib_mips/board.c b/lib_mips/board.c index 07270955349..65a0bc38d4a 100644 --- a/lib_mips/board.c +++ b/lib_mips/board.c @@ -393,6 +393,13 @@ void board_init_r (gd_t *id, ulong dest_addr) /* IP Address */ bd->bi_ip_addr = getenv_IPaddr("ipaddr"); +#if defined(CONFIG_PCI) + /* + * Do pci configuration + */ + pci_init(); +#endif + /** leave this here (after malloc(), environment and PCI are working) **/ /* Initialize devices */ devices_init (); |