summaryrefslogtreecommitdiffhomepage
path: root/dev/kernel/src/PRDT.cc
diff options
context:
space:
mode:
Diffstat (limited to 'dev/kernel/src/PRDT.cc')
-rw-r--r--dev/kernel/src/PRDT.cc22
1 files changed, 0 insertions, 22 deletions
diff --git a/dev/kernel/src/PRDT.cc b/dev/kernel/src/PRDT.cc
deleted file mode 100644
index 626a7e16..00000000
--- a/dev/kernel/src/PRDT.cc
+++ /dev/null
@@ -1,22 +0,0 @@
-/* ========================================
-
- Copyright (C) 2024-2025, Amlal El Mahrouss, licensed under the Apache 2.0 license.
-
-======================================== */
-
-#include <KernelKit/DebugOutput.h>
-#include <NeKit/KString.h>
-#include <StorageKit/PRDT.h>
-
-namespace Kernel {
-/***********************************************************************************/
-/// @brief constructs a new PRD.
-/// @param prd PRD reference.
-/// @note This doesnt construct a valid, please fill it by yourself.
-/***********************************************************************************/
-void construct_prdt(Ref<PRDT>& prd) {
- prd.Leak().fPhysAddress = 0x0;
- prd.Leak().fSectorCount = 0x0;
- prd.Leak().fEndBit = 0x0;
-}
-} // namespace Kernel