PCI IDE driver, new create_volume () syscall, test scripts
All checks were successful
Build documentation / build-and-deploy (push) Successful in 2m37s
All checks were successful
Build documentation / build-and-deploy (push) Successful in 2m37s
This commit is contained in:
16
kernel/device/pci_info.h
Normal file
16
kernel/device/pci_info.h
Normal file
@@ -0,0 +1,16 @@
|
||||
#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
|
||||
Reference in New Issue
Block a user