Move PCI ATA driver to pci/ata

This commit is contained in:
2025-11-23 21:49:49 +01:00
parent fa152cac4d
commit d3a91b6438
5 changed files with 8 additions and 7 deletions

View File

@ -69,6 +69,7 @@ SRCFILES += $(call GRABSRC, \
cpu \
vmm \
pci \
pci/ata \
)
CFILES := $(call GET_CFILES, $(SRCFILES))

View File

@ -1,6 +0,0 @@
#ifndef PCI_ATA_H_
#define PCI_ATA_H_
void pci_ata_init(void);
#endif // PCI_ATA_H_

6
kernel/pci/ata/ata.h Normal file
View File

@ -0,0 +1,6 @@
#ifndef PCI_ATA_ATA_H_
#define PCI_ATA_ATA_H_
void pci_ata_init(void);
#endif // PCI_ATA__ATA_H_

View File

@ -1,7 +1,7 @@
#include <stdint.h>
#include <stddef.h>
#include "pci/pci.h"
#include "pci/ata.h"
#include "pci/ata/ata.h"
#include "io/io.h"
#include "std/string.h"
#include "util/util.h"