organize device drivers into subdirectories
Some checks failed
Build ISO image / build-and-deploy (push) Failing after 35s
Build documentation / build-and-deploy (push) Failing after 7s

This commit is contained in:
2026-03-31 15:56:30 +02:00
parent dcfc1a6e42
commit 4c4c10c61e
38 changed files with 79 additions and 64 deletions

View File

@@ -0,0 +1,11 @@
#ifndef _KERNEL_DEVICE_PCI_IDE_H
#define _KERNEL_DEVICE_PCI_IDE_H
#include <device/pci/pci_info.h>
#include <libk/std.h>
#include <proc/proc.h>
#include <proc/reschedule.h>
bool pci_ide_init (struct proc* proc, struct reschedule_ctx* rctx, struct pci_info pci_info);
#endif // _KERNEL_DEVICE_PCI_IDE_H