summaryrefslogtreecommitdiffhomepage
path: root/Kernel/KernelKit/DeviceManager.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'Kernel/KernelKit/DeviceManager.hpp')
-rw-r--r--Kernel/KernelKit/DeviceManager.hpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/Kernel/KernelKit/DeviceManager.hpp b/Kernel/KernelKit/DeviceManager.hpp
index 219977f4..8261834d 100644
--- a/Kernel/KernelKit/DeviceManager.hpp
+++ b/Kernel/KernelKit/DeviceManager.hpp
@@ -1,6 +1,6 @@
/* -------------------------------------------
- Copyright Zeta Electronics Corporation
+ Copyright ZKA Technologies
------------------------------------------- */
@@ -19,7 +19,7 @@
/* @brief Device abstraction and I/O buffer. */
#include <NewKit/ErrorOr.hpp>
-#include <NewKit/Ref.hpp>
+#include <NewKit/Ref.hxx>
// Last Rev
// Wed, Apr 3, 2024 9:09:41 AM
@@ -72,8 +72,8 @@ namespace Kernel
}
private:
- void (*fOut)(T Data);
- void (*fIn)(T Data);
+ void (*fOut)(T Data) = {nullptr};
+ void (*fIn)(T Data) = {nullptr};
};
///