diff options
Diffstat (limited to 'dev/Kernel/StorageKit')
| -rw-r--r-- | dev/Kernel/StorageKit/AHCI.h | 4 | ||||
| -rw-r--r-- | dev/Kernel/StorageKit/ATA.h | 4 | ||||
| -rw-r--r-- | dev/Kernel/StorageKit/NVME.h | 4 | ||||
| -rw-r--r-- | dev/Kernel/StorageKit/PRDT.h | 6 | ||||
| -rw-r--r-- | dev/Kernel/StorageKit/StorageKit.h | 4 |
5 files changed, 11 insertions, 11 deletions
diff --git a/dev/Kernel/StorageKit/AHCI.h b/dev/Kernel/StorageKit/AHCI.h index 226cb86c..6adab614 100644 --- a/dev/Kernel/StorageKit/AHCI.h +++ b/dev/Kernel/StorageKit/AHCI.h @@ -10,7 +10,7 @@ #include <KernelKit/DriveMgr.h> #include <NewKit/OwnPtr.h> -namespace Kernel +namespace NeOS { class AHCIDeviceInterface NE_DEVICE<MountpointInterface*> { @@ -30,4 +30,4 @@ namespace Kernel private: void (*fCleanup)(void) = {nullptr}; }; -} // namespace Kernel +} // namespace NeOS diff --git a/dev/Kernel/StorageKit/ATA.h b/dev/Kernel/StorageKit/ATA.h index e8c2ab67..0de90897 100644 --- a/dev/Kernel/StorageKit/ATA.h +++ b/dev/Kernel/StorageKit/ATA.h @@ -11,7 +11,7 @@ #include <NewKit/OwnPtr.h> #include <NewKit/Utils.h> -namespace Kernel +namespace NeOS { /// @brief ATA device interface type. class ATADeviceInterface : public IDeviceObject<MountpointInterface*> @@ -36,4 +36,4 @@ namespace Kernel private: void (*fCleanup)(void) = {nullptr}; }; -} // namespace Kernel +} // namespace NeOS diff --git a/dev/Kernel/StorageKit/NVME.h b/dev/Kernel/StorageKit/NVME.h index e6c968d6..6b7cc1fd 100644 --- a/dev/Kernel/StorageKit/NVME.h +++ b/dev/Kernel/StorageKit/NVME.h @@ -9,7 +9,7 @@ #include <KernelKit/DeviceMgr.h> #include <KernelKit/DriveMgr.h> -namespace Kernel +namespace NeOS { class NVMEDeviceInterface final NE_DEVICE<MountpointInterface*> { @@ -31,4 +31,4 @@ namespace Kernel private: Void (*fCleanup)(Void) = {nullptr}; }; -} // namespace Kernel +} // namespace NeOS diff --git a/dev/Kernel/StorageKit/PRDT.h b/dev/Kernel/StorageKit/PRDT.h index 603d4f23..40ba11e0 100644 --- a/dev/Kernel/StorageKit/PRDT.h +++ b/dev/Kernel/StorageKit/PRDT.h @@ -10,9 +10,9 @@ #include <KernelKit/PCI/Iterator.h> #include <NewKit/Ref.h> -#define kPrdtTransferSize (sizeof(Kernel::UShort)) +#define kPrdtTransferSize (sizeof(NeOS::UShort)) -namespace Kernel +namespace NeOS { /// @brief Tranfer information about PRD. enum kPRDTTransfer @@ -33,4 +33,4 @@ namespace Kernel void construct_prdt(Ref<PRDT>& prd); EXTERN_C Int32 kPRDTTransferStatus; -} // namespace Kernel +} // namespace NeOS diff --git a/dev/Kernel/StorageKit/StorageKit.h b/dev/Kernel/StorageKit/StorageKit.h index 954d368b..a0f1a2d1 100644 --- a/dev/Kernel/StorageKit/StorageKit.h +++ b/dev/Kernel/StorageKit/StorageKit.h @@ -10,7 +10,7 @@ #define kDriveSectorSizeSSD (512U) #define kDriveSectorSizeOptical (2048) -namespace Kernel +namespace NeOS { template <typename T> class IDeviceObject; @@ -19,4 +19,4 @@ namespace Kernel class AHCIDeviceInterface; class ATADeviceInterface; class SCSIDeviceInterface; -} // namespace Kernel +} // namespace NeOS |
