diff options
author | Wolfgang Denk | 2005-08-16 15:17:53 +0200 |
---|---|---|
committer | Wolfgang Denk | 2005-08-16 15:17:53 +0200 |
commit | 98128f389cc318dbd1d597cf8d2d09902cddcb4b (patch) | |
tree | 7e33c28d14fad1ac4dca6fe560d50c79926d5ebe /board | |
parent | 87b8bd5aed0d2a71cf77c7178d67a370a0f68612 (diff) |
Enable PCI on hmi1001 board
Diffstat (limited to 'board')
-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 89802090864..fca11d0e7cd 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 |