Kernel: Add enum values for later implementation of AHCI

This commit is contained in:
Liav A 2021-02-06 17:20:21 +02:00 committed by Andreas Kling
parent 4f32dc2043
commit 0e9a2345f9
Notes: sideshowbarker 2024-07-18 21:42:26 +09:00
2 changed files with 2 additions and 0 deletions

View file

@ -48,6 +48,7 @@ public:
enum class Type : u8 {
Ramdisk,
IDE,
AHCI,
NVMe
};

View file

@ -41,6 +41,7 @@ public:
enum class Type : u8 {
Ramdisk,
IDE,
SATA,
NVMe,
};