summaryrefslogtreecommitdiffstats
path: root/isys/pci/pciprobe.h
blob: 4a225606def93e38a511028c3b759f9cb1bf860b (plain)
1
2
3
4
5
6
7
8
9
10

struct pciDevice {
        unsigned int vendor, device, type;
        char * driver;
        char * desc;
};

int probePciReadDrivers(const char *fn);
void probePciFreeDrivers(void);
struct pciDevice **probePci(unsigned int type, int all);