summaryrefslogtreecommitdiffhomepage
path: root/dev
diff options
context:
space:
mode:
authorAmlal <amlal.elmahrouss@icloud.com>2025-02-24 09:10:19 +0100
committerAmlal <amlal.elmahrouss@icloud.com>2025-02-24 09:10:19 +0100
commit98e52da36c385b47a66b4d0573ed8a4f13b673ae (patch)
tree37726bda0bcf40ff524bfb4c5fdaf6eb1f89d509 /dev
parent40773d41fa7898e7f03b0de011a9740061ade0aa (diff)
AHCI.cc: Fix missing return on type warning.
Signed-off-by: Amlal <amlal.elmahrouss@icloud.com>
Diffstat (limited to 'dev')
-rw-r--r--dev/Kernel/HALKit/AMD64/Storage/AHCI.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/dev/Kernel/HALKit/AMD64/Storage/AHCI.cc b/dev/Kernel/HALKit/AMD64/Storage/AHCI.cc
index 5b22ccce..920f16a6 100644
--- a/dev/Kernel/HALKit/AMD64/Storage/AHCI.cc
+++ b/dev/Kernel/HALKit/AMD64/Storage/AHCI.cc
@@ -297,7 +297,7 @@ ErrorOr<AHCIDeviceInterface> sk_acquire_ahci_device(Int32 drv_index)
Bool drv_std_detected(Void)
{
- drv_std_detected_ahci();
+ return drv_std_detected_ahci();
}
Void drv_std_write(UInt64 lba, Char* buffer, SizeT sector_sz, SizeT size_buffer)