summaryrefslogtreecommitdiffhomepage
path: root/dev/Kernel/KernelKit/PCI/Database.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'dev/Kernel/KernelKit/PCI/Database.hxx')
-rw-r--r--dev/Kernel/KernelKit/PCI/Database.hxx38
1 files changed, 0 insertions, 38 deletions
diff --git a/dev/Kernel/KernelKit/PCI/Database.hxx b/dev/Kernel/KernelKit/PCI/Database.hxx
deleted file mode 100644
index c5f3c953..00000000
--- a/dev/Kernel/KernelKit/PCI/Database.hxx
+++ /dev/null
@@ -1,38 +0,0 @@
-/* -------------------------------------------
-
- Copyright ZKA Technologies.
-
-------------------------------------------- */
-#pragma once
-
-#include <KernelKit/PCI/Device.hxx>
-#include <NewKit/Defines.hxx>
-
-namespace Kernel
-{
- namespace Types
- {
- // https://wiki.osdev.org/PCI
- enum class PciDeviceKind : UChar
- {
- MassStorageController = 0x1,
- NetworkController = 0x2,
- DisplayController = 0x3,
- MultimediaController = 0x4,
- MemoryController = 0x5,
- Bridge = 0x6,
- CommunicationController = 0x7,
- GenericSystemPeripheral = 0x8,
- InputDeviceController = 0x9,
- DockingStation = 0xa,
- Processor = 0xb,
- SerialBusController = 0xc,
- WirelessController = 0xd,
- IntelligentController = 0xe,
- SatelliteCommunicationsController = 0xf,
- CoProcessor = 0x40,
- Unassgined = 0xf,
- Invalid = Unassgined,
- };
- } // namespace Types
-} // namespace Kernel