blob: 09c90568afcc25b4704cb77f7845f5b4f525bd70 [file] [log] [blame]
swissChili0d248832021-04-08 18:16:02 -07001#include <dri/pci.h>
2
3ushort pci_config_readw(uchar bus, uchar slot, uchar func, uchar offset)
4{
5 struct pci_config_address address =
6 {
7 .enabled = 1,
8 .bus = bus,
9 .device = slot,
10 .function = func,
11 .offset = offset ^ 0b11,
12 };
13}