2005-03-04 Joel Sherrill <joel@OARcorp.com>

* include/bsp.h, pci/pci.c, startup/bspstart.c: Make PCI initialize
	function part of the unified PCI API as pci_initialize().
This commit is contained in:
Joel Sherrill
2005-03-04 21:48:32 +00:00
parent 037864f52f
commit 62c3d857b4
4 changed files with 8 additions and 3 deletions

View File

@@ -1,3 +1,8 @@
2005-03-04 Joel Sherrill <joel@OARcorp.com>
* include/bsp.h, pci/pci.c, startup/bspstart.c: Make PCI initialize
function part of the unified PCI API as pci_initialize().
2005-02-16 Ralf Corsepius <ralf.corsepius@rtems.org> 2005-02-16 Ralf Corsepius <ralf.corsepius@rtems.org>
* configure.ac: Remove argument from RTEMS_PPC_EXCEPTIONS. * configure.ac: Remove argument from RTEMS_PPC_EXCEPTIONS.

View File

@@ -314,7 +314,7 @@ extern unsigned long ulCpuBusClock;
/* /*
* PCI initialisation * PCI initialisation
*/ */
void InitializePCI(void); void pci_initialize(void);
/* /*
* VME initiaisation * VME initiaisation

View File

@@ -248,7 +248,7 @@ rtems_status_code PCIConfigRead32(
/* /*
* This routine determines the maximum bus number in the system * This routine determines the maximum bus number in the system
*/ */
void InitializePCI() void pci_initialize()
{ {
uint8_t ucSlotNumber, ucFnNumber, ucNumFuncs; uint8_t ucSlotNumber, ucFnNumber, ucNumFuncs;
uint8_t ucHeader; uint8_t ucHeader;

View File

@@ -116,7 +116,7 @@ void bsp_pretasking_hook(void)
/* /*
* Initialise the PCI bus(ses) * Initialise the PCI bus(ses)
*/ */
InitializePCI(); pci_initialize();
/* /*
* Initialize the Universe PCI-VME bridge * Initialize the Universe PCI-VME bridge