diff options
Diffstat (limited to 'Kernel/Sources/Storage')
| -rw-r--r-- | Kernel/Sources/Storage/AHCIDeviceInterface.cxx | 2 | ||||
| -rw-r--r-- | Kernel/Sources/Storage/ATADeviceInterface.cxx | 2 | ||||
| -rw-r--r-- | Kernel/Sources/Storage/NVMEDeviceInterface.cxx | 4 |
3 files changed, 4 insertions, 4 deletions
diff --git a/Kernel/Sources/Storage/AHCIDeviceInterface.cxx b/Kernel/Sources/Storage/AHCIDeviceInterface.cxx index 3d5632db..0366efe9 100644 --- a/Kernel/Sources/Storage/AHCIDeviceInterface.cxx +++ b/Kernel/Sources/Storage/AHCIDeviceInterface.cxx @@ -6,7 +6,7 @@ #include <StorageKit/AHCI.hpp> -using namespace NewOS; +using namespace Kernel; /// @brief Class constructor /// @param Out Disk output diff --git a/Kernel/Sources/Storage/ATADeviceInterface.cxx b/Kernel/Sources/Storage/ATADeviceInterface.cxx index 95aded72..8c45f31b 100644 --- a/Kernel/Sources/Storage/ATADeviceInterface.cxx +++ b/Kernel/Sources/Storage/ATADeviceInterface.cxx @@ -6,7 +6,7 @@ #include <StorageKit/ATA.hpp> -using namespace NewOS; +using namespace Kernel; /// @brief Class constructor /// @param Out Disk output diff --git a/Kernel/Sources/Storage/NVMEDeviceInterface.cxx b/Kernel/Sources/Storage/NVMEDeviceInterface.cxx index 1b85392e..9b2da7c2 100644 --- a/Kernel/Sources/Storage/NVMEDeviceInterface.cxx +++ b/Kernel/Sources/Storage/NVMEDeviceInterface.cxx @@ -6,10 +6,10 @@ #include <StorageKit/NVME.hpp> -namespace NewOS +namespace Kernel { const char* NVMEDeviceInterface::Name() const { return ("NVMEDeviceInterface"); } -} // namespace NewOS +} // namespace Kernel |
