summaryrefslogtreecommitdiffhomepage
path: root/dev/hpfs
diff options
context:
space:
mode:
authorAmlal El Mahrouss <zka-holder@mahrouss-logic.com>2024-10-11 11:51:25 +0000
committerAmlal El Mahrouss <zka-holder@mahrouss-logic.com>2024-10-11 11:51:25 +0000
commitd1ddc74c70cea4d73e82f5eef95eb7db19de8c7b (patch)
treeb408569ea465119e71a489bf00a4daf6018bfcec /dev/hpfs
parentfaf6a99a3dd3cbf4fbacc0392dc89555db42016e (diff)
Update hpfs_main.cxx, fix includes for DDK.
Diffstat (limited to 'dev/hpfs')
-rw-r--r--dev/hpfs/src/hpfs_main.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/dev/hpfs/src/hpfs_main.cxx b/dev/hpfs/src/hpfs_main.cxx
index 187fb3ce..a72573cb 100644
--- a/dev/hpfs/src/hpfs_main.cxx
+++ b/dev/hpfs/src/hpfs_main.cxx
@@ -8,9 +8,9 @@
------------------------------------------- */
#include <hpfs/hpfs_specs.hxx>
-#include <ddk/KernelStd.h>
+#include <ddk/ddk.h>
-static DDK_OBJECT_MANIFEST* cIFSObject = nullptr;
+static DDK_OBJECT_MANIFEST* kIfsObject = nullptr;
/** @brief HPFS IFS main. */
int32_t ModuleMain(void)
@@ -18,7 +18,7 @@ int32_t ModuleMain(void)
auto ifs_handle = KernelGetObject(0, "IFS_OBJECT");
// TODO: Register this IFS with necessary I/O functions...
- cIFSObject = ifs_handle;
+ kIfsObject = ifs_handle;
return 0;
}