diff options
author | wdenk | 2003-09-02 22:48:03 +0000 |
---|---|---|
committer | wdenk | 2003-09-02 22:48:03 +0000 |
commit | 12f34241cb9679c27a1ab3561766562f5a515eff (patch) | |
tree | e6408a1701c7dabf3e2ceb1326ce2f5cc8657c96 /drivers/pci.c | |
parent | 326428cc8bbdddb30920a96b672abd0d59833ce4 (diff) |
* Add support for PPChameleon Eval Board
* Add support for P3G4 board
* Fix problem with MGT5100 FEC driver: add "early" MAC address
initialization
Diffstat (limited to 'drivers/pci.c')
-rw-r--r-- | drivers/pci.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/pci.c b/drivers/pci.c index b9a1b9a872f..c91c992e8d8 100644 --- a/drivers/pci.c +++ b/drivers/pci.c @@ -428,7 +428,7 @@ int pci_hose_scan_bus(struct pci_controller *hose, int bus) dev < PCI_BDF(bus,PCI_MAX_PCI_DEVICES-1,PCI_MAX_PCI_FUNCTIONS-1); dev += PCI_BDF(0,0,1)) { -#ifndef CONFIG_405GP /* don't skip host bridge on ppc405gp */ +#if ((!defined(CONFIG_405GP)) && (!defined(CONFIG_405EP))) /* don't skip host bridge on ppc405gp and 405ep */ /* Skip our host bridge */ if ( dev == PCI_BDF(hose->first_busno,0,0) ) continue; |