diff options
author | Wolfgang Denk <wd@pollux.denx.de> | 2005-08-16 15:17:53 +0200 |
---|---|---|
committer | Wolfgang Denk <wd@pollux.denx.de> | 2005-08-16 15:17:53 +0200 |
commit | 98128f389cc318dbd1d597cf8d2d09902cddcb4b (patch) | |
tree | 7e33c28d14fad1ac4dca6fe560d50c79926d5ebe /board/hmi1001 | |
parent | 87b8bd5aed0d2a71cf77c7178d67a370a0f68612 (diff) | |
download | u-boot-imx-98128f389cc318dbd1d597cf8d2d09902cddcb4b.zip u-boot-imx-98128f389cc318dbd1d597cf8d2d09902cddcb4b.tar.gz u-boot-imx-98128f389cc318dbd1d597cf8d2d09902cddcb4b.tar.bz2 |
Enable PCI on hmi1001 board
Diffstat (limited to 'board/hmi1001')
-rw-r--r-- | board/hmi1001/hmi1001.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/board/hmi1001/hmi1001.c b/board/hmi1001/hmi1001.c index 8980209..fca11d0 100644 --- a/board/hmi1001/hmi1001.c +++ b/board/hmi1001/hmi1001.c @@ -170,3 +170,13 @@ int board_early_init_r (void) *(vu_long *)MPC5XXX_CS0_STOP = STOP_REG(CFG_FLASH_BASE, CFG_FLASH_SIZE); return 0; } +#ifdef CONFIG_PCI +static struct pci_controller hose; + +extern void pci_mpc5xxx_init(struct pci_controller *); + +void pci_init_board(void) +{ + pci_mpc5xxx_init(&hose); +} +#endif |