All checks were successful
Build documentation / build-and-deploy (push) Successful in 2m37s
17 lines
272 B
C
17 lines
272 B
C
#ifndef _KERNEL_DEVICE_PCI_INFO_H
|
|
#define _KERNEL_DEVICE_PCI_INFO_H
|
|
|
|
#include <libk/std.h>
|
|
|
|
struct pci_info {
|
|
uint8_t bus;
|
|
uint8_t slot;
|
|
uint8_t func;
|
|
uint16_t vendor;
|
|
uint16_t device;
|
|
uint8_t class;
|
|
uint8_t subclass;
|
|
};
|
|
|
|
#endif // _KERNEL_DEVICE_PCI_INFO_H
|