summaryrefslogtreecommitdiffhomepage
path: root/Kernel/KernelKit/PCI
diff options
context:
space:
mode:
authorAmlal EL Mahrouss <amlalelmahrouss@icloud.com>2024-08-02 20:11:24 +0200
committerAmlal EL Mahrouss <amlalelmahrouss@icloud.com>2024-08-02 20:11:24 +0200
commit59578978610f6af245f571a011694a51d94dc530 (patch)
tree3553807ef1c8095248520ee823c1426aef8738d8 /Kernel/KernelKit/PCI
parent9afcd1c001703c32964fed5906f36a2d913e91e9 (diff)
[unstable] [META] refactor whole project.
Signed-off-by: Amlal EL Mahrouss <amlalelmahrouss@icloud.com>
Diffstat (limited to 'Kernel/KernelKit/PCI')
-rw-r--r--Kernel/KernelKit/PCI/Database.hxx (renamed from Kernel/KernelKit/PCI/Database.hpp)4
-rw-r--r--Kernel/KernelKit/PCI/Device.hxx (renamed from Kernel/KernelKit/PCI/Device.hpp)2
-rw-r--r--Kernel/KernelKit/PCI/Dma.hxx (renamed from Kernel/KernelKit/PCI/Dma.hpp)8
-rw-r--r--Kernel/KernelKit/PCI/Express.hxx (renamed from Kernel/KernelKit/PCI/Express.hpp)2
-rw-r--r--Kernel/KernelKit/PCI/IO.hxx (renamed from Kernel/KernelKit/PCI/IO.hpp)6
-rw-r--r--Kernel/KernelKit/PCI/Iterator.hxx (renamed from Kernel/KernelKit/PCI/Iterator.hpp)8
-rw-r--r--Kernel/KernelKit/PCI/PCI.hxx2
7 files changed, 16 insertions, 16 deletions
diff --git a/Kernel/KernelKit/PCI/Database.hpp b/Kernel/KernelKit/PCI/Database.hxx
index 008cdb9a..03514207 100644
--- a/Kernel/KernelKit/PCI/Database.hpp
+++ b/Kernel/KernelKit/PCI/Database.hxx
@@ -5,8 +5,8 @@
------------------------------------------- */
#pragma once
-#include <KernelKit/PCI/Device.hpp>
-#include <NewKit/Defines.hpp>
+#include <KernelKit/PCI/Device.hxx>
+#include <NewKit/Defines.hxx>
namespace Kernel
{
diff --git a/Kernel/KernelKit/PCI/Device.hpp b/Kernel/KernelKit/PCI/Device.hxx
index bee1f631..68a77c18 100644
--- a/Kernel/KernelKit/PCI/Device.hpp
+++ b/Kernel/KernelKit/PCI/Device.hxx
@@ -5,7 +5,7 @@
------------------------------------------- */
#pragma once
-#include <NewKit/Defines.hpp>
+#include <NewKit/Defines.hxx>
namespace Kernel::PCI
{
diff --git a/Kernel/KernelKit/PCI/Dma.hpp b/Kernel/KernelKit/PCI/Dma.hxx
index dfac226f..7809d6cd 100644
--- a/Kernel/KernelKit/PCI/Dma.hpp
+++ b/Kernel/KernelKit/PCI/Dma.hxx
@@ -6,10 +6,10 @@
#pragma once
-#include <KernelKit/DeviceManager.hpp>
-#include <KernelKit/PCI/Device.hpp>
-#include <NewKit/Array.hpp>
-#include <NewKit/OwnPtr.hpp>
+#include <KernelKit/DeviceManager.hxx>
+#include <KernelKit/PCI/Device.hxx>
+#include <NewKit/Array.hxx>
+#include <NewKit/OwnPtr.hxx>
#include <NewKit/Ref.hxx>
namespace Kernel
diff --git a/Kernel/KernelKit/PCI/Express.hpp b/Kernel/KernelKit/PCI/Express.hxx
index 71ba4c50..41d07ad0 100644
--- a/Kernel/KernelKit/PCI/Express.hpp
+++ b/Kernel/KernelKit/PCI/Express.hxx
@@ -6,6 +6,6 @@
#pragma once
-#include <NewKit/Defines.hpp>
+#include <NewKit/Defines.hxx>
#define PCI_EXPRESS_BUS_COUNT (4096)
diff --git a/Kernel/KernelKit/PCI/IO.hpp b/Kernel/KernelKit/PCI/IO.hxx
index 90e9244d..55346d74 100644
--- a/Kernel/KernelKit/PCI/IO.hpp
+++ b/Kernel/KernelKit/PCI/IO.hxx
@@ -6,9 +6,9 @@
#pragma once
-#include <ArchKit/ArchKit.hpp>
-#include <NewKit/Array.hpp>
-#include <NewKit/Defines.hpp>
+#include <ArchKit/ArchKit.hxx>
+#include <NewKit/Array.hxx>
+#include <NewKit/Defines.hxx>
#include <NewKit/Ref.hxx>
namespace Kernel
diff --git a/Kernel/KernelKit/PCI/Iterator.hpp b/Kernel/KernelKit/PCI/Iterator.hxx
index 8c2df3b4..b299960d 100644
--- a/Kernel/KernelKit/PCI/Iterator.hpp
+++ b/Kernel/KernelKit/PCI/Iterator.hxx
@@ -7,10 +7,10 @@
#ifndef __PCI_ITERATOR_HPP__
#define __PCI_ITERATOR_HPP__
-#include <KernelKit/PCI/Database.hpp>
-#include <KernelKit/PCI/Device.hpp>
-#include <NewKit/Array.hpp>
-#include <NewKit/Defines.hpp>
+#include <KernelKit/PCI/Database.hxx>
+#include <KernelKit/PCI/Device.hxx>
+#include <NewKit/Array.hxx>
+#include <NewKit/Defines.hxx>
#include <NewKit/Ref.hxx>
#define NEWOS_BUS_COUNT (256)
diff --git a/Kernel/KernelKit/PCI/PCI.hxx b/Kernel/KernelKit/PCI/PCI.hxx
index e75215d6..f0dc477a 100644
--- a/Kernel/KernelKit/PCI/PCI.hxx
+++ b/Kernel/KernelKit/PCI/PCI.hxx
@@ -6,7 +6,7 @@
#pragma once
-#include <NewKit/Defines.hpp>
+#include <NewKit/Defines.hxx>
#define cPCIConfigAddressPort (0xCF8)
#define cPCIConfigDataPort (0xCFC)