Moved sata sources out of x86_64/ directory
This commit is contained in:
parent
f5f15ca7fe
commit
17d62d3e0f
5 changed files with 4 additions and 4 deletions
2
Makefile
2
Makefile
|
|
@ -19,7 +19,6 @@ KERNEL_SOURCES_x86_64 := \
|
|||
src/x86_64/cpu.c \
|
||||
src/x86_64/paging.c \
|
||||
src/x86_64/asm.c \
|
||||
src/x86_64/sata.c \
|
||||
src/x86_64/address.c \
|
||||
src/x86_64/ps2_driver.c \
|
||||
src/x86_64/hwclock.c \
|
||||
|
|
@ -40,6 +39,7 @@ KERNEL_SOURCES := \
|
|||
src/std.c \
|
||||
src/slab.c \
|
||||
src/nodevec.c \
|
||||
src/sata.c \
|
||||
src/sff.c \
|
||||
src/snake.c \
|
||||
src/window.c \
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@
|
|||
#include "time.h"
|
||||
#include "snake.h"
|
||||
#include "pci.h"
|
||||
#include "x86_64/sata.h"
|
||||
#include "sata.h"
|
||||
|
||||
static Timer interpreter_timers[10];
|
||||
static int interpreter_num_timers;
|
||||
|
|
|
|||
|
|
@ -11,7 +11,7 @@
|
|||
#include "paging.h"
|
||||
#include "slab.h"
|
||||
#include "nodevec.h"
|
||||
#include "x86_64/sata.h"
|
||||
#include "sata.h"
|
||||
|
||||
#include "x86_64/asm.h"
|
||||
#include "x86_64/cmos.h"
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@
|
|||
#include <cpu.h>
|
||||
#include <x86_64/interrupt.h>
|
||||
|
||||
#include <x86_64/sata.h>
|
||||
#include <sata.h>
|
||||
|
||||
// TODO make sure CL, FIS are aligned!
|
||||
|
||||
Loading…
Add table
Reference in a new issue