2005-02-17 Joel Sherrill <joel@OARcorp.com>

* include/rtems/pci.h: Merge differences from
	libbsp/powerpc/shared/pci/pci.h.
This commit is contained in:
Joel Sherrill
2005-02-17 16:30:00 +00:00
parent 7a83cb1598
commit a71e623822
2 changed files with 12 additions and 4 deletions
+5
View File
@@ -1,3 +1,8 @@
2005-02-17 Joel Sherrill <joel@OARcorp.com>
* include/rtems/pci.h: Merge differences from
libbsp/powerpc/shared/pci/pci.h.
2005-02-17 Ralf Corsepius <ralf.corsepius@rtems.org>
* libnetworking/vm/vm_param.h: Update from FreeBSD.
+7 -4
View File
@@ -1082,7 +1082,10 @@
#define PCIBIOS_SET_FAILED 0x88
#define PCIBIOS_BUFFER_TOO_SMALL 0x89
#define PCI_MAX_DEVICES 16
/* T. Straumann, 7/31/2001: increased to 32 - PMC slots are not
* scanned on mvme2306 otherwise
*/
#define PCI_MAX_DEVICES 32
#define PCI_MAX_FUNCTIONS 8
typedef struct {
@@ -1101,9 +1104,9 @@ typedef struct {
}pci_config_access_functions;
typedef struct {
volatile unsigned char* pci_config_addr;
volatile unsigned char* pci_config_data;
pci_config_access_functions* pci_functions;
volatile unsigned char* pci_config_addr;
volatile unsigned char* pci_config_data;
const pci_config_access_functions* pci_functions;
} pci_config;
extern pci_config BSP_pci_configuration;