summaryrefslogtreecommitdiffhomepage
path: root/dev/ZKA/StorageKit
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal.elmahrouss@icloud.com>2024-08-22 08:48:37 +0200
committerAmlal El Mahrouss <amlal.elmahrouss@icloud.com>2024-08-22 08:48:37 +0200
commit5d38a6302720eb1d2783c2067965ade316cc92de (patch)
tree906b56ec92e9075181494e8a4012ebde72d22175 /dev/ZKA/StorageKit
parentb95b1fc42d371b08aa82fea8e92aa04b2ef5631f (diff)
[REFACTOR] use Char instead of builtin char.
Signed-off-by: Amlal El Mahrouss <amlal.elmahrouss@icloud.com>
Diffstat (limited to 'dev/ZKA/StorageKit')
-rw-r--r--dev/ZKA/StorageKit/AHCI.hxx2
-rw-r--r--dev/ZKA/StorageKit/ATA.hxx2
-rw-r--r--dev/ZKA/StorageKit/NVME.hxx2
3 files changed, 3 insertions, 3 deletions
diff --git a/dev/ZKA/StorageKit/AHCI.hxx b/dev/ZKA/StorageKit/AHCI.hxx
index 81d0c5bf..3e9567a5 100644
--- a/dev/ZKA/StorageKit/AHCI.hxx
+++ b/dev/ZKA/StorageKit/AHCI.hxx
@@ -25,7 +25,7 @@ namespace Kernel
AHCIDeviceInterface& operator=(const AHCIDeviceInterface&) = default;
AHCIDeviceInterface(const AHCIDeviceInterface&) = default;
- const char* Name() const override;
+ const Char* Name() const override;
private:
void (*fCleanup)(void) = {nullptr};
diff --git a/dev/ZKA/StorageKit/ATA.hxx b/dev/ZKA/StorageKit/ATA.hxx
index 23437ca8..da2988e5 100644
--- a/dev/ZKA/StorageKit/ATA.hxx
+++ b/dev/ZKA/StorageKit/ATA.hxx
@@ -31,7 +31,7 @@ namespace Kernel
ATADeviceInterface& operator=(const ATADeviceInterface&) = default;
ATADeviceInterface(const ATADeviceInterface&) = default;
- const char* Name() const override;
+ const Char* Name() const override;
private:
void (*fCleanup)(void) = { nullptr };
diff --git a/dev/ZKA/StorageKit/NVME.hxx b/dev/ZKA/StorageKit/NVME.hxx
index 9d42ce9d..c0231f57 100644
--- a/dev/ZKA/StorageKit/NVME.hxx
+++ b/dev/ZKA/StorageKit/NVME.hxx
@@ -25,7 +25,7 @@ namespace Kernel
NVMEDeviceInterface& operator=(const NVMEDeviceInterface&) = default;
NVMEDeviceInterface(const NVMEDeviceInterface&) = default;
- const char* Name() const override;
+ const Char* Name() const override;
public:
OwnPtr<MountpointInterface*> operator()(UInt32 dmaLow, UInt32 dmaHigh, SizeT sz);