summaryrefslogtreecommitdiffhomepage
path: root/src/loader/ide.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/loader/ide.c')
-rw-r--r--src/loader/ide.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/loader/ide.c b/src/loader/ide.c
index c5461d0..7fb405a 100644
--- a/src/loader/ide.c
+++ b/src/loader/ide.c
@@ -2,13 +2,11 @@
#include <cpu.h>
#include <def.h>
-#include <dev.h>
+#include <device.h>
#include <ide.h>
-#include <lib.h>
+#include <library.h>
#include <log.h>
-#include <pnc.h>
-
-static u8 ide_buf[SECTOR_SIZE] = { 0 };
+#include <panic.h>
static void ide_select_drive(u8 bus, u8 drive)
{
@@ -27,6 +25,8 @@ static void ide_select_drive(u8 bus, u8 drive)
static u8 ide_find(u8 bus, u8 drive)
{
+ static u8 ide_buf[SECTOR_SIZE] = { 0 };
+
u16 io = bus == ATA_PRIMARY ? ATA_PRIMARY_IO : ATA_SECONDARY_IO;
ide_select_drive(bus, drive);
@@ -113,7 +113,7 @@ static void ata_probe(void)
name[2] = 'a' + i;
// Register without write support
- dev_register(DEV_DISK, name, data, ata_read, NULL);
+ device_register(DEVICE_DISK, name, data, ata_read, NULL);
}
}