diff options
author | wdenk <wdenk> | 2005-01-31 22:09:11 +0000 |
---|---|---|
committer | wdenk <wdenk> | 2005-01-31 22:09:11 +0000 |
commit | 436be29cad60a46ed5983120aff71909d8f234a3 (patch) | |
tree | bbe41af218ae37d29afcc6db7dcbf526c3ab4a60 /board | |
parent | cd172b710822fe170db04fa1e78c08adea56425a (diff) |
* Update CPC45 board configuration.LABEL_2005_01_31_2245
* Add USB and PCI support for INKA4x0 board
Diffstat (limited to 'board')
-rw-r--r-- | board/inka4x0/inka4x0.c | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/board/inka4x0/inka4x0.c b/board/inka4x0/inka4x0.c index 72293ecf7eb..a33251021f5 100644 --- a/board/inka4x0/inka4x0.c +++ b/board/inka4x0/inka4x0.c @@ -176,3 +176,16 @@ void flash_preinit(void) */ *(vu_long *)MPC5XXX_BOOTCS_CFG &= ~0x1; /* clear RO */ } + +#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 + + |