summaryrefslogtreecommitdiffstats
path: root/isys/pci/pciprobe.c
diff options
context:
space:
mode:
Diffstat (limited to 'isys/pci/pciprobe.c')
-rw-r--r--isys/pci/pciprobe.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/isys/pci/pciprobe.c b/isys/pci/pciprobe.c
index de874b95f..65d4e8ed9 100644
--- a/isys/pci/pciprobe.c
+++ b/isys/pci/pciprobe.c
@@ -11,7 +11,7 @@
#include "pciprobe.h"
-struct pciDevice * pciDeviceList = NULL;
+static struct pciDevice * pciDeviceList = NULL;
static int numPciDevices = 0;
static struct pci_access *pacc=NULL;
@@ -36,7 +36,7 @@ static int vendCmp(const void * a, const void * b) {
}
-char *getVendor(unsigned int vendor) {
+static char *getVendor(unsigned int vendor) {
struct pciDevice *searchDev, key;
char *tmpstr;
@@ -128,7 +128,7 @@ int probePciReadDrivers(const char * fn) {
return 0;
}
-struct pciDevice * pciGetDeviceInfo(unsigned int vend, unsigned int dev) {
+static struct pciDevice * pciGetDeviceInfo(unsigned int vend, unsigned int dev) {
struct pciDevice *searchDev, key;
key.vendor = vend;