summaryrefslogtreecommitdiffhomepage
path: root/dev/Mod/NVME
diff options
context:
space:
mode:
Diffstat (limited to 'dev/Mod/NVME')
-rw-r--r--dev/Mod/NVME/NVME.h11
1 files changed, 6 insertions, 5 deletions
diff --git a/dev/Mod/NVME/NVME.h b/dev/Mod/NVME/NVME.h
index 6d327bd7..73ca0d7e 100644
--- a/dev/Mod/NVME/NVME.h
+++ b/dev/Mod/NVME/NVME.h
@@ -5,7 +5,7 @@
Revision History:
??/??/24: Added file (amlel)
- 23 Jul 24: Update filename to Defines.h and using ALIGN_NVME for NVME structs. (amlel)
+ 23 Jul 24: Update filename to Defines.h and using ZKA_ALIGN_NVME for NVME structs. (amlel)
------------------------------------------- */
@@ -14,13 +14,14 @@
#include <NewKit/Defines.h>
-/// TODO: checklist in: https://wiki.osdev.org/NVMe
+/// @file NVME.h
+/// @brief NVME driver.
-#define ALIGN_NVME ATTRIBUTE(aligned(sizeof(Kernel::UInt32)))
+#define ZKA_ALIGN_NVME ATTRIBUTE(aligned(sizeof(Kernel::UInt32)))
namespace Kernel
{
- struct ALIGN_NVME HAL_NVME_BAR_0 final
+ struct ZKA_ALIGN_NVME HAL_NVME_BAR_0 final
{
UInt32 fCapabilities;
UInt32 fVersion;
@@ -33,7 +34,7 @@ namespace Kernel
UInt32 fAdminCompletionQueue;
};
- struct ALIGN_NVME HAL_NVME_QUEUE final
+ struct ZKA_ALIGN_NVME HAL_NVME_QUEUE final
{
UInt32 fOpcode;
UInt32 fNSID;