summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/i386/shared/pci/pcibios.h
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2005-03-04 21:48:00 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2005-03-04 21:48:00 +0000
commitbdc2572a16e0b87b901725a239dc1e5480dfd232 (patch)
treefe04a1b0045b0be276013d4e4ef547a0d0c1a455 /c/src/lib/libbsp/i386/shared/pci/pcibios.h
parent2005-03-04 Joel Sherrill <joel@OARcorp.com> (diff)
downloadrtems-bdc2572a16e0b87b901725a239dc1e5480dfd232.tar.bz2
2005-03-04 Joel Sherrill <joel@OARcorp.com>
* shared/pci/pcibios.c, shared/pci/pcibios.h: Make PCI initialize function part of the unified PCI API as pci_initialize().
Diffstat (limited to 'c/src/lib/libbsp/i386/shared/pci/pcibios.h')
-rw-r--r--c/src/lib/libbsp/i386/shared/pci/pcibios.h10
1 files changed, 1 insertions, 9 deletions
diff --git a/c/src/lib/libbsp/i386/shared/pci/pcibios.h b/c/src/lib/libbsp/i386/shared/pci/pcibios.h
index beba80ff5b..efaac74347 100644
--- a/c/src/lib/libbsp/i386/shared/pci/pcibios.h
+++ b/c/src/lib/libbsp/i386/shared/pci/pcibios.h
@@ -8,14 +8,7 @@
#ifndef _PCIB_H
#define _PCIB_H
-/* Error codes */
-#define PCIB_ERR_SUCCESS (0)
-#define PCIB_ERR_UNINITIALIZED (-1) /* PCI BIOS is not initilized */
-#define PCIB_ERR_NOTPRESENT (-2) /* PCI BIOS not present */
-#define PCIB_ERR_NOFUNC (-3) /* Function not supported */
-#define PCIB_ERR_BADVENDOR (-4) /* Bad Vendor ID */
-#define PCIB_ERR_DEVNOTFOUND (-5) /* Device not found */
-#define PCIB_ERR_BADREG (-6) /* Bad register number */
+#include <rtems/pci.h>
/*
* Make device signature from bus number, device numebr and function
@@ -34,7 +27,6 @@
extern "C" {
#endif
-int pcib_init(void);
int pcib_find_by_devid(int vendorId, int devId, int idx, int *sig);
int pcib_find_by_class(int classCode, int idx, int *sig);
int pcib_special_cycle(int busNo, int data);