summaryrefslogtreecommitdiffhomepage
path: root/src/kernel/StorageKit/AHCI.h
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2026-01-07 11:11:24 +0100
committerAmlal El Mahrouss <amlal@nekernel.org>2026-01-07 11:12:10 +0100
commit27585af8ea93d05e8b8a0c2c5faa7de483fb9859 (patch)
tree29f83a2dbdf000e673cacb9373a3a7d631cf5adf /src/kernel/StorageKit/AHCI.h
parentbd1598a2b97277e527240f721df14911602cbf11 (diff)
feat! kernel/boot: standalone release prep and huge kernel improvements.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'src/kernel/StorageKit/AHCI.h')
-rw-r--r--src/kernel/StorageKit/AHCI.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/kernel/StorageKit/AHCI.h b/src/kernel/StorageKit/AHCI.h
index 2ac0032d..2b2988fc 100644
--- a/src/kernel/StorageKit/AHCI.h
+++ b/src/kernel/StorageKit/AHCI.h
@@ -15,8 +15,9 @@ namespace Kernel {
/// @note The class is derived from the IDevice class.
class AHCIDeviceInterface NE_DEVICE<IMountpoint*> {
public:
- explicit AHCIDeviceInterface(void (*out)(IDevice* self, IMountpoint* out),
- void (*in)(IDevice* self, IMountpoint* in));
+ AHCIDeviceInterface() = default;
+ AHCIDeviceInterface(void (*out)(IDevice* self, IMountpoint* out),
+ void (*in)(IDevice* self, IMountpoint* in));
virtual ~AHCIDeviceInterface() override;