Files
mop3/kernel/device/pci_info.h
kamkow1 38557bab7d
All checks were successful
Build documentation / build-and-deploy (push) Successful in 2m37s
PCI IDE driver, new create_volume () syscall, test scripts
2026-03-10 18:14:18 +01:00

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