2009-12-11 Ralf Corsépius <ralf.corsepius@rtems.org>

PR 1483/cpukit
	* pci/pci.c: Rename pci_config into rtems_pci_config_t.
This commit is contained in:
Ralf Corsepius
2009-12-11 13:00:27 +00:00
parent b80cf5a300
commit df0243f6de
6 changed files with 33 additions and 18 deletions

View File

@@ -1,3 +1,8 @@
2009-12-11 Ralf Corsépius <ralf.corsepius@rtems.org>
PR 1483/cpukit
* pci/pci.c: Rename pci_config into rtems_pci_config_t.
2009-12-10 Ralf Corsépius <ralf.corsepius@rtems.org>
* console/console.c:

View File

@@ -223,11 +223,11 @@ const pci_config_access_functions pci_access_functions = {
BSP_pci_write_config_dword
};
pci_config BSP_pci_configuration = { (volatile unsigned char*)PCI_CONFIG_ADDR,
(volatile unsigned char*)PCI_CONFIG_DATA,
&pci_access_functions };
rtems_pci_config_t BSP_pci_configuration = {
(volatile unsigned char*)PCI_CONFIG_ADDR,
(volatile unsigned char*)PCI_CONFIG_DATA,
&pci_access_functions
};
void init_at697_pci(void) {

View File

@@ -1,3 +1,8 @@
2009-12-11 Ralf Corsépius <ralf.corsepius@rtems.org>
PR 1483/cpukit
* pci/pci.c: Rename pci_config into rtems_pci_config_t.
2009-12-10 Ralf Corsépius <ralf.corsepius@rtems.org>
* console/console.c:

View File

@@ -221,11 +221,11 @@ const pci_config_access_functions pci_access_functions = {
BSP_pci_write_config_dword
};
pci_config BSP_pci_configuration = { (volatile unsigned char*)PCI_CONFIG_ADDR,
(volatile unsigned char*)PCI_CONFIG_DATA,
&pci_access_functions };
rtems_pci_config_t BSP_pci_configuration = {
(volatile unsigned char*)PCI_CONFIG_ADDR,
(volatile unsigned char*)PCI_CONFIG_DATA,
&pci_access_functions
};
int init_grpci(void) {