summaryrefslogtreecommitdiffhomepage
path: root/src/kernel/KernelKit/PCI/Device.h
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2025-12-08 04:01:32 -0500
committerGitHub <noreply@github.com>2025-12-08 04:01:32 -0500
commitf78c535aec66e02584e1b02995dc12c9e1bcb64c (patch)
tree8fd8793369c30ddbfb61366407db3d464a95ad6b /src/kernel/KernelKit/PCI/Device.h
parent1a20507a6ecaa084b61d9b9d686d2e186b683e35 (diff)
parente6768dc3b6c7864166211fd6e2f67ff4e5a2cbe5 (diff)
Merge pull request #114 from nekernel-org/new-scripts
chore: use `enum struct` instead of `enum class`.
Diffstat (limited to 'src/kernel/KernelKit/PCI/Device.h')
-rw-r--r--src/kernel/KernelKit/PCI/Device.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/kernel/KernelKit/PCI/Device.h b/src/kernel/KernelKit/PCI/Device.h
index e9c5a683..3e7284de 100644
--- a/src/kernel/KernelKit/PCI/Device.h
+++ b/src/kernel/KernelKit/PCI/Device.h
@@ -10,7 +10,7 @@
#include <NeKit/KernelPanic.h>
namespace Kernel::PCI {
-enum class PciConfigKind : UShort {
+enum struct PciConfigKind : UShort {
ConfigAddress = 0xCF8,
ConfigData = 0xCFC,
CommandReg = 0x0004,