swissChili | ca26848 | 2021-05-28 18:31:46 -0700 | [diff] [blame] | 1 | #pragma once |
2 | |||||
3 | #include <kint.h> | ||||
4 | |||||
5 | struct pci_vendor | ||||
6 | { | ||||
7 | ushort id; | ||||
8 | char *name; | ||||
9 | }; | ||||
10 | |||||
11 | extern struct pci_vendor pci_vendors[]; | ||||
12 | extern int pci_num_vendors; | ||||
13 | |||||
14 | struct pci_vendor *pci_vendor_by_id(ushort id); |