summaryrefslogtreecommitdiffhomepage
path: root/Kernel/Sources/Storage
diff options
context:
space:
mode:
authorAmlal EL Mahrouss <amlalelmahrouss@icloud.com>2024-07-02 22:00:35 +0200
committerAmlal EL Mahrouss <amlalelmahrouss@icloud.com>2024-07-02 22:00:49 +0200
commit375d0210dcb2070a12d916523f4a1dafff28360c (patch)
treed0c217f529b8069ea659778c2ee9ca20aeba33a4 /Kernel/Sources/Storage
parentf1d3744829a661d1600c2f3bbdbdf679ee0bd0e1 (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/Sources/Storage')
-rw-r--r--Kernel/Sources/Storage/AHCIDeviceInterface.cxx2
-rw-r--r--Kernel/Sources/Storage/ATADeviceInterface.cxx2
-rw-r--r--Kernel/Sources/Storage/NVMEDeviceInterface.cxx4
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