From 9755fe7f4f14f9c0d5b3f5cf488c1c180f4679a7 Mon Sep 17 00:00:00 2001 From: laroche Date: Fri, 4 Aug 2000 09:41:52 +0000 Subject: subvendorids,subdeviceids for trimpcitable --- isys/pci/pciprobe.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'isys') 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; -- cgit