summaryrefslogtreecommitdiffhomepage
path: root/src/kernel/StorageKit/AHCI.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/kernel/StorageKit/AHCI.h')
-rw-r--r--src/kernel/StorageKit/AHCI.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/kernel/StorageKit/AHCI.h b/src/kernel/StorageKit/AHCI.h
index d29cb0fc..fa74a0f4 100644
--- a/src/kernel/StorageKit/AHCI.h
+++ b/src/kernel/StorageKit/AHCI.h
@@ -4,7 +4,8 @@
======================================== */
-#pragma once
+#ifndef STORAGEKIT_AHCI_H
+#define STORAGEKIT_AHCI_H
#include <KernelKit/DeviceMgr.h>
#include <KernelKit/DriveMgr.h>
@@ -45,3 +46,5 @@ class AHCIDeviceInterface NE_DEVICE<IMountpoint*> {
UInt16 sk_init_ahci_device(BOOL atapi);
ErrorOr<AHCIDeviceInterface> sk_acquire_ahci_device(UInt32 drv_index);
} // namespace Kernel
+
+#endif