blob: dc05e8ac8cc257a210e6f4dc2d97bf2638d7e8d8 [file] [log] [blame]
swissChilica268482021-05-28 18:31:46 -07001#pragma once
2
3#include <kint.h>
4
5struct pci_vendor
6{
7 ushort id;
8 char *name;
9};
10
11extern struct pci_vendor pci_vendors[];
12extern int pci_num_vendors;
13
14struct pci_vendor *pci_vendor_by_id(ushort id);