Move PCI ATA driver to pci/ata
This commit is contained in:
@ -69,6 +69,7 @@ SRCFILES += $(call GRABSRC, \
|
||||
cpu \
|
||||
vmm \
|
||||
pci \
|
||||
pci/ata \
|
||||
)
|
||||
|
||||
CFILES := $(call GET_CFILES, $(SRCFILES))
|
||||
|
||||
@ -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
6
kernel/pci/ata/ata.h
Normal 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_
|
||||
@ -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"
|
||||
|
||||
Reference in New Issue
Block a user