diff options
| author | Amlal El Mahrouss <amlalelmahrouss@icloud.com> | 2024-02-04 21:12:23 +0100 |
|---|---|---|
| committer | Amlal El Mahrouss <amlalelmahrouss@icloud.com> | 2024-02-04 21:12:23 +0100 |
| commit | eddb029b924d8ddf930667071878b4553c193492 (patch) | |
| tree | 4e50a39b6916b833a620cf05ac69e4575f49890e /Private/KernelKit | |
| parent | b76f26d281c77e3fa028d4217a1456c43ab68d06 (diff) | |
HCR-11 : Kernel: Update kDeviceType enum.
Signed-off-by: Amlal El Mahrouss <amlalelmahrouss@icloud.com>
Diffstat (limited to 'Private/KernelKit')
| -rw-r--r-- | Private/KernelKit/Device.hpp | 18 |
1 files changed, 8 insertions, 10 deletions
diff --git a/Private/KernelKit/Device.hpp b/Private/KernelKit/Device.hpp index 097af85a..9a689b26 100644 --- a/Private/KernelKit/Device.hpp +++ b/Private/KernelKit/Device.hpp @@ -81,15 +81,13 @@ class IOBuf final { ///! @brief Device types enum. enum { - kDeviceIde, - kDeviceNetwork, - kDevicePrinter, - kDeviceGSDB, - kDeviceScsi, - kDeviceSata, - kDeviceUsb, - kDeviceCD, - kDeviceSwap, - kDeviceCnt, + kDeviceTypeIDE, + kDeviceTypeEthernet, + kDeviceTypeWiFi, + kDeviceTypeRS232, + kDeviceTypeSCSI, + kDeviceTypeSHCI, + kDeviceTypeUSB, + kDeviceTypeCount, }; } // namespace HCore |
