diff options
| author | Amlal El Mahrouss <amlal.elmahrouss@icloud.com> | 2024-10-21 20:23:36 +0200 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal.elmahrouss@icloud.com> | 2024-10-21 20:23:36 +0200 |
| commit | d48cbe75ef29a9c67c9d176bf58e56ea6448fb9e (patch) | |
| tree | 89cbd6b7e23802f92bf3158868f4dc33c088e516 /dev/zka/HALKit/ARM64 | |
| parent | 21b3da78f806d6765f9dffa6a84c21346f171cee (diff) | |
IMP: Major refactor of header and source files extensions.
Signed-off-by: Amlal El Mahrouss <amlal.elmahrouss@icloud.com>
Diffstat (limited to 'dev/zka/HALKit/ARM64')
| -rw-r--r-- | dev/zka/HALKit/ARM64/APM/APM.cc (renamed from dev/zka/HALKit/ARM64/APM/APM.cxx) | 4 | ||||
| -rw-r--r-- | dev/zka/HALKit/ARM64/HalACPIFactoryInterface.cc (renamed from dev/zka/HALKit/ARM64/HalACPIFactoryInterface.cxx) | 10 | ||||
| -rw-r--r-- | dev/zka/HALKit/ARM64/HalCoreMPScheduler.cc (renamed from dev/zka/HALKit/ARM64/HalCoreMPScheduler.cxx) | 4 | ||||
| -rw-r--r-- | dev/zka/HALKit/ARM64/HalDebugOutput.cc (renamed from dev/zka/HALKit/ARM64/HalDebugOutput.cxx) | 8 | ||||
| -rw-r--r-- | dev/zka/HALKit/ARM64/HalKernelMain.cc (renamed from dev/zka/HALKit/ARM64/HalKernelMain.cxx) | 24 | ||||
| -rw-r--r-- | dev/zka/HALKit/ARM64/HalPagingMgr.cc (renamed from dev/zka/HALKit/ARM64/HalPagingMgr.cxx) | 4 | ||||
| -rw-r--r-- | dev/zka/HALKit/ARM64/HalSchedulerCore.cc (renamed from dev/zka/HALKit/ARM64/HalSchedulerCore.cxx) | 2 | ||||
| -rw-r--r-- | dev/zka/HALKit/ARM64/HalTimer.cc (renamed from dev/zka/HALKit/ARM64/HalTimer.cxx) | 2 | ||||
| -rw-r--r-- | dev/zka/HALKit/ARM64/Paging.h (renamed from dev/zka/HALKit/ARM64/Paging.hxx) | 2 | ||||
| -rw-r--r-- | dev/zka/HALKit/ARM64/Processor.h (renamed from dev/zka/HALKit/ARM64/Processor.hxx) | 10 | ||||
| -rw-r--r-- | dev/zka/HALKit/ARM64/Storage/HalFlash.cc (renamed from dev/zka/HALKit/ARM64/Storage/HalFlash.cxx) | 4 |
11 files changed, 37 insertions, 37 deletions
diff --git a/dev/zka/HALKit/ARM64/APM/APM.cxx b/dev/zka/HALKit/ARM64/APM/APM.cc index 164f3aab..ff193765 100644 --- a/dev/zka/HALKit/ARM64/APM/APM.cxx +++ b/dev/zka/HALKit/ARM64/APM/APM.cc @@ -4,8 +4,8 @@ ------------------------------------------- */ -#include <modules/APM/APM.hxx> -#include <KernelKit/LPC.hxx> +#include <modules/APM/APM.h> +#include <KernelKit/LPC.h> using namespace Kernel; diff --git a/dev/zka/HALKit/ARM64/HalACPIFactoryInterface.cxx b/dev/zka/HALKit/ARM64/HalACPIFactoryInterface.cc index 8221b734..c093e83e 100644 --- a/dev/zka/HALKit/ARM64/HalACPIFactoryInterface.cxx +++ b/dev/zka/HALKit/ARM64/HalACPIFactoryInterface.cc @@ -4,11 +4,11 @@ ------------------------------------------- */ -#include <modules/ACPI/ACPIFactoryInterface.hxx> -#include <NewKit/String.hxx> -#include <ArchKit/ArchKit.hxx> -#include <KernelKit/Heap.hxx> -#include <modules/APM/APM.hxx> +#include <modules/ACPI/ACPIFactoryInterface.h> +#include <NewKit/String.h> +#include <ArchKit/ArchKit.h> +#include <KernelKit/Heap.h> +#include <modules/APM/APM.h> namespace Kernel { diff --git a/dev/zka/HALKit/ARM64/HalCoreMPScheduler.cxx b/dev/zka/HALKit/ARM64/HalCoreMPScheduler.cc index 76456318..d808ebeb 100644 --- a/dev/zka/HALKit/ARM64/HalCoreMPScheduler.cxx +++ b/dev/zka/HALKit/ARM64/HalCoreMPScheduler.cc @@ -4,8 +4,8 @@ ------------------------------------------- */ -#include <modules/ACPI/ACPIFactoryInterface.hxx> -#include <KernelKit/UserProcessScheduler.hxx> +#include <modules/ACPI/ACPIFactoryInterface.h> +#include <KernelKit/UserProcessScheduler.h> using namespace Kernel; diff --git a/dev/zka/HALKit/ARM64/HalDebugOutput.cxx b/dev/zka/HALKit/ARM64/HalDebugOutput.cc index 2710b099..c98d87a5 100644 --- a/dev/zka/HALKit/ARM64/HalDebugOutput.cxx +++ b/dev/zka/HALKit/ARM64/HalDebugOutput.cc @@ -4,10 +4,10 @@ ------------------------------------------- */ -#include <ArchKit/ArchKit.hxx> -#include <KernelKit/DebugOutput.hxx> -#include <NewKit/Utils.hxx> -#include <NewKit/New.hxx> +#include <ArchKit/ArchKit.h> +#include <KernelKit/DebugOutput.h> +#include <NewKit/Utils.h> +#include <NewKit/New.h> namespace Kernel { diff --git a/dev/zka/HALKit/ARM64/HalKernelMain.cxx b/dev/zka/HALKit/ARM64/HalKernelMain.cc index 52096158..16460bb5 100644 --- a/dev/zka/HALKit/ARM64/HalKernelMain.cxx +++ b/dev/zka/HALKit/ARM64/HalKernelMain.cc @@ -4,18 +4,18 @@ ------------------------------------------- */ -#include <ArchKit/ArchKit.hxx> -#include <modules/FB/FB.hxx> -#include <FirmwareKit/Handover.hxx> -#include <KernelKit/FileMgr.hxx> -#include <KernelKit/Heap.hxx> -#include <KernelKit/PEFCodeMgr.hxx> -#include <KernelKit/UserProcessScheduler.hxx> -#include <NewKit/Json.hxx> -#include <KernelKit/CodeMgr.hxx> -#include <modules/ACPI/ACPIFactoryInterface.hxx> -#include <NetworkKit/IPC.hxx> -#include <CFKit/Property.hxx> +#include <ArchKit/ArchKit.h> +#include <modules/FB/FB.h> +#include <FirmwareKit/Handover.h> +#include <KernelKit/FileMgr.h> +#include <KernelKit/Heap.h> +#include <KernelKit/PEFCodeMgr.h> +#include <KernelKit/UserProcessScheduler.h> +#include <NewKit/Json.h> +#include <KernelKit/CodeMgr.h> +#include <modules/ACPI/ACPIFactoryInterface.h> +#include <NetworkKit/IPC.h> +#include <CFKit/Property.h> Kernel::Void hal_real_init(Kernel::Void) noexcept; EXTERN_C Kernel::Void ke_dll_entrypoint(Kernel::Void); diff --git a/dev/zka/HALKit/ARM64/HalPagingMgr.cxx b/dev/zka/HALKit/ARM64/HalPagingMgr.cc index ae060af9..0182c315 100644 --- a/dev/zka/HALKit/ARM64/HalPagingMgr.cxx +++ b/dev/zka/HALKit/ARM64/HalPagingMgr.cc @@ -7,8 +7,8 @@ ------------------------------------------- */ -#include <HALKit/ARM64/Paging.hxx> -#include <HALKit/ARM64/Processor.hxx> +#include <HALKit/ARM64/Paging.h> +#include <HALKit/ARM64/Processor.h> namespace Kernel::HAL { diff --git a/dev/zka/HALKit/ARM64/HalSchedulerCore.cxx b/dev/zka/HALKit/ARM64/HalSchedulerCore.cc index e231e0fc..a384db22 100644 --- a/dev/zka/HALKit/ARM64/HalSchedulerCore.cxx +++ b/dev/zka/HALKit/ARM64/HalSchedulerCore.cc @@ -4,7 +4,7 @@ ------------------------------------------- */ -#include <KernelKit/UserProcessScheduler.hxx> +#include <KernelKit/UserProcessScheduler.h> namespace Kernel { diff --git a/dev/zka/HALKit/ARM64/HalTimer.cxx b/dev/zka/HALKit/ARM64/HalTimer.cc index 7183fd10..d3f8c457 100644 --- a/dev/zka/HALKit/ARM64/HalTimer.cxx +++ b/dev/zka/HALKit/ARM64/HalTimer.cc @@ -11,4 +11,4 @@ ------------------------------------------- */ -#include <ArchKit/ArchKit.hxx> +#include <ArchKit/ArchKit.h> diff --git a/dev/zka/HALKit/ARM64/Paging.hxx b/dev/zka/HALKit/ARM64/Paging.h index 276433c7..74b4bab0 100644 --- a/dev/zka/HALKit/ARM64/Paging.hxx +++ b/dev/zka/HALKit/ARM64/Paging.h @@ -12,7 +12,7 @@ ------------------------------------------------------- */ -#include <NewKit/Defines.hxx> +#include <NewKit/Defines.h> #ifndef kPageMax #define kPageMax (0x200) diff --git a/dev/zka/HALKit/ARM64/Processor.hxx b/dev/zka/HALKit/ARM64/Processor.h index 93a9141a..5f00e345 100644 --- a/dev/zka/HALKit/ARM64/Processor.hxx +++ b/dev/zka/HALKit/ARM64/Processor.h @@ -6,10 +6,10 @@ #pragma once -#include <NewKit/Array.hxx> -#include <NewKit/Defines.hxx> -#include <NewKit/Utils.hxx> -#include <FirmwareKit/Handover.hxx> +#include <NewKit/Array.h> +#include <NewKit/Defines.h> +#include <NewKit/Utils.h> +#include <FirmwareKit/Handover.h> #define kCPUBackendName "ARMv8" @@ -72,4 +72,4 @@ inline Kernel::UIntPtr kKernelBitMpSize = 0UL; inline Kernel::VoidPtr kKernelPhysicalStart = nullptr; -#include <HALKit/ARM64/Paging.hxx> +#include <HALKit/ARM64/Paging.h> diff --git a/dev/zka/HALKit/ARM64/Storage/HalFlash.cxx b/dev/zka/HALKit/ARM64/Storage/HalFlash.cc index 70e025f7..d64d9d82 100644 --- a/dev/zka/HALKit/ARM64/Storage/HalFlash.cxx +++ b/dev/zka/HALKit/ARM64/Storage/HalFlash.cc @@ -4,8 +4,8 @@ ------------------------------------------- */ -#include <NewKit/Defines.hxx> -#include <ArchKit/ArchKit.hxx> +#include <NewKit/Defines.h> +#include <ArchKit/ArchKit.h> /// @file Flash.cxx /// @brief Flash memory builtin. |
