aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/fs/ata_pio.c
diff options
context:
space:
mode:
authorMarvin Borner2020-03-18 16:41:21 +0100
committerMarvin Borner2020-03-18 16:41:21 +0100
commitc6657aac0c5d5ecf347bc082cb6df38e1174d297 (patch)
tree5db660dd74d9741cf1105290d4584d9a1fdb7020 /src/kernel/fs/ata_pio.c
parentadd6efeb22ffb7695d5c9addcef073fc653f700e (diff)
Replaced asm calls with sweet function
Diffstat (limited to 'src/kernel/fs/ata_pio.c')
-rw-r--r--src/kernel/fs/ata_pio.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/kernel/fs/ata_pio.c b/src/kernel/fs/ata_pio.c
index b6dcdcc..ef9a23e 100644
--- a/src/kernel/fs/ata_pio.c
+++ b/src/kernel/fs/ata_pio.c
@@ -81,7 +81,7 @@ uint8_t *ata_read28(struct ata_interface *interface, uint32_t sector)
uint8_t ata_write28(struct ata_interface *interface, uint32_t sector, const uint8_t *contents)
{
if (sector > 0x0FFFFFFF) return 1;
- asm ("cli");
+ cli();
outb(interface->device_port, (uint8_t) ((interface->master ? 0xE0 : 0xF0) | ((sector & 0x0F000000) >> 24)));
@@ -122,4 +122,4 @@ uint8_t ata_clear28(struct ata_interface *interface, uint32_t sector)
{
uint8_t empty_sector[512] = {0};
return ata_write28(interface, sector, empty_sector);
-} \ No newline at end of file
+}