From 1b429c0fc28e5cd8b474ad5a1de1fa6f3d7c2e2a Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Mon, 12 Jul 2021 18:14:44 +0200 Subject: Renamed files to match presentation --- src/loader/ide.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'src/loader/ide.c') 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 #include -#include +#include #include -#include +#include #include -#include - -static u8 ide_buf[SECTOR_SIZE] = { 0 }; +#include 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); } } -- cgit v1.2.3