From 375d0210dcb2070a12d916523f4a1dafff28360c Mon Sep 17 00:00:00 2001 From: Amlal EL Mahrouss Date: Tue, 2 Jul 2024 22:00:35 +0200 Subject: MHR-36: Change namespace name, got out of the codename stage. Signed-off-by: Amlal EL Mahrouss --- Kernel/StorageKit/AHCI.hpp | 4 ++-- Kernel/StorageKit/ATA.hpp | 4 ++-- Kernel/StorageKit/NVME.hpp | 4 ++-- Kernel/StorageKit/PRDT.hpp | 6 +++--- 4 files changed, 9 insertions(+), 9 deletions(-) (limited to 'Kernel/StorageKit') diff --git a/Kernel/StorageKit/AHCI.hpp b/Kernel/StorageKit/AHCI.hpp index 3ccdce7a..af4a1327 100644 --- a/Kernel/StorageKit/AHCI.hpp +++ b/Kernel/StorageKit/AHCI.hpp @@ -10,7 +10,7 @@ #include #include -namespace NewOS +namespace Kernel { class AHCIDeviceInterface : public DeviceInterface { @@ -30,4 +30,4 @@ namespace NewOS private: void (*fCleanup)(void); }; -} // namespace NewOS \ No newline at end of file +} // namespace Kernel \ No newline at end of file diff --git a/Kernel/StorageKit/ATA.hpp b/Kernel/StorageKit/ATA.hpp index cfbe0da4..5c03f7ae 100644 --- a/Kernel/StorageKit/ATA.hpp +++ b/Kernel/StorageKit/ATA.hpp @@ -11,7 +11,7 @@ #include #include -namespace NewOS +namespace Kernel { /// @brief ATA device interface type. class ATADeviceInterface : public DeviceInterface @@ -36,4 +36,4 @@ namespace NewOS private: void (*fCleanup)(void); }; -} // namespace NewOS \ No newline at end of file +} // namespace Kernel \ No newline at end of file diff --git a/Kernel/StorageKit/NVME.hpp b/Kernel/StorageKit/NVME.hpp index eda71b8d..c7ff0e66 100644 --- a/Kernel/StorageKit/NVME.hpp +++ b/Kernel/StorageKit/NVME.hpp @@ -10,7 +10,7 @@ #include #include -namespace NewOS +namespace Kernel { class NVMEDeviceInterface : public DeviceInterface { @@ -40,4 +40,4 @@ namespace NewOS private: void (*fCleanup)(void); }; -} // namespace NewOS +} // namespace Kernel diff --git a/Kernel/StorageKit/PRDT.hpp b/Kernel/StorageKit/PRDT.hpp index f7ed9013..522e96fb 100644 --- a/Kernel/StorageKit/PRDT.hpp +++ b/Kernel/StorageKit/PRDT.hpp @@ -10,9 +10,9 @@ #include #include -#define kPrdtTransferSize (sizeof(NewOS::UShort)) +#define kPrdtTransferSize (sizeof(Kernel::UShort)) -namespace NewOS +namespace Kernel { /// @brief Tranfer information about PRD. enum kPRDTTransfer @@ -33,4 +33,4 @@ namespace NewOS void construct_prdt(Ref& prd); EXTERN_C Int32 kPRDTTransferStatus; -} // namespace NewOS +} // namespace Kernel -- cgit v1.2.3