diff options
| author | Amlal El Mahrouss <amlal.elmahrouss@icloud.com> | 2025-03-12 05:52:28 +0100 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal.elmahrouss@icloud.com> | 2025-03-12 05:52:28 +0100 |
| commit | 182f9d9e6ce671970391c72f5b90c66d11efbb70 (patch) | |
| tree | 6bd86ef6bd300d80c98984c058a7a2949fb5b52d /dev/Mod | |
| parent | c24971c61795971982ccc12e7dfc59ec6326e77f (diff) | |
ADD: Scheduler bug fixes, and working on deadlock prevention.
Signed-off-by: Amlal El Mahrouss <amlal.elmahrouss@icloud.com>
Diffstat (limited to 'dev/Mod')
| -rw-r--r-- | dev/Mod/AHCI/AHCI.h | 2 | ||||
| -rw-r--r-- | dev/Mod/NVME/NVME.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/dev/Mod/AHCI/AHCI.h b/dev/Mod/AHCI/AHCI.h index 11f2346a..9e534a1a 100644 --- a/dev/Mod/AHCI/AHCI.h +++ b/dev/Mod/AHCI/AHCI.h @@ -282,7 +282,7 @@ typedef struct HbaCmdHeader final NeOS::UInt8 Reserved0 : 1; // Reserved NeOS::UInt8 Pmp : 4; // Port multiplier port - NeOS::UInt16 Prdtl; // Physical region descriptor table length in entries + NeOS::UInt16 Prdtl; // Physical region descriptor table length in entries NeOS::UInt32 Prdbc; // Physical region descriptor byte count transferred NeOS::UInt32 Ctba; // Command table descriptor base address diff --git a/dev/Mod/NVME/NVME.h b/dev/Mod/NVME/NVME.h index 3adadc98..5f8608f7 100644 --- a/dev/Mod/NVME/NVME.h +++ b/dev/Mod/NVME/NVME.h @@ -52,7 +52,7 @@ namespace NeOS kIdentifyNVME = 0x06, kReadNVME = 0x02, kWriteNVME = 0x01, - kCountNVME = 5, + kCountNVME = 5, }; /// @brief Creates an admin command for a DMA operation. |
