2005-05-04 Jennifer Averett <jennifer.averett@oarcorp.com>

* pci/pci.c, pci/pci.h, startup/bspstart.c: Name change to support
	common PCI interface
This commit is contained in:
Jennifer Averett
2005-05-04 19:30:09 +00:00
parent ef546c3270
commit 4cbb57da8a
4 changed files with 8 additions and 3 deletions

View File

@@ -1,3 +1,8 @@
2005-05-04 Jennifer Averett <jennifer.averett@oarcorp.com>
* pci/pci.c, pci/pci.h, startup/bspstart.c: Name change to support
common PCI interface
2005-04-15 Joel Sherrill <joel@OARcorp.com>
* GT64260/GT64260TWSI.c, GT64260/GT64260TWSI.h, irq/GT64260Int.c,

View File

@@ -373,7 +373,7 @@ void pci_initialize()
/*
* Return the number of PCI buses in the system
*/
unsigned char BusCountPCI()
unsigned char pci_bus_count()
{
return(ucMaxPCIBus);
}

View File

@@ -1188,7 +1188,7 @@ extern int pci_write_config_dword();
/*
* Return the number of PCI busses in the system
*/
extern unsigned char BusCountPCI();
extern unsigned char pci_bus_count();
extern void pci_initialize();
#endif

View File

@@ -591,7 +591,7 @@ void bsp_start( void )
#endif
pci_initialize();
#ifdef SHOW_MORE_INIT_SETTINGS
printk("Number of PCI buses found is : %d\n", BusCountPCI());
printk("Number of PCI buses found is : %d\n", pci_bus_count());
#endif
/* Install our own exception handler (needs PCI) */