diff options
| author | Amlal EL Mahrouss <amlalelmahrouss@icloud.com> | 2024-07-02 22:00:35 +0200 |
|---|---|---|
| committer | Amlal EL Mahrouss <amlalelmahrouss@icloud.com> | 2024-07-02 22:00:49 +0200 |
| commit | 375d0210dcb2070a12d916523f4a1dafff28360c (patch) | |
| tree | d0c217f529b8069ea659778c2ee9ca20aeba33a4 /Kernel/StorageKit | |
| parent | f1d3744829a661d1600c2f3bbdbdf679ee0bd0e1 (diff) | |
MHR-36: Change namespace name, got out of the codename stage.
Signed-off-by: Amlal EL Mahrouss <amlalelmahrouss@icloud.com>
Diffstat (limited to 'Kernel/StorageKit')
| -rw-r--r-- | Kernel/StorageKit/AHCI.hpp | 4 | ||||
| -rw-r--r-- | Kernel/StorageKit/ATA.hpp | 4 | ||||
| -rw-r--r-- | Kernel/StorageKit/NVME.hpp | 4 | ||||
| -rw-r--r-- | Kernel/StorageKit/PRDT.hpp | 6 |
4 files changed, 9 insertions, 9 deletions
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 <KernelKit/DriveManager.hxx> #include <NewKit/OwnPtr.hpp> -namespace NewOS +namespace Kernel { class AHCIDeviceInterface : public DeviceInterface<MountpointInterface*> { @@ -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 <NewKit/OwnPtr.hpp> #include <NewKit/Utils.hpp> -namespace NewOS +namespace Kernel { /// @brief ATA device interface type. class ATADeviceInterface : public DeviceInterface<MountpointInterface*> @@ -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 <KernelKit/DriveManager.hxx> #include <NewKit/OwnPtr.hpp> -namespace NewOS +namespace Kernel { class NVMEDeviceInterface : public DeviceInterface<MountpointInterface*> { @@ -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 <KernelKit/PCI/Iterator.hpp> #include <NewKit/Ref.hpp> -#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<PRDT>& prd); EXTERN_C Int32 kPRDTTransferStatus; -} // namespace NewOS +} // namespace Kernel |
