Synchronize up to trunk's revision r57756.
[reactos.git] / drivers / bus / pci / pci.h
index 2c40433..605be08 100644 (file)
@@ -1,5 +1,3 @@
-#pragma once
-
 #include <ntifs.h>
 #include <wdmguid.h>
 #include <stdio.h>
@@ -19,8 +17,12 @@ typedef struct _PCI_DEVICE
   PCI_SLOT_NUMBER SlotNumber;
   // PCI configuration data
   PCI_COMMON_CONFIG PciConfig;
-  // Flag used during enumeration to locate removed devices
-  BOOLEAN RemovePending;
+  // Enable memory space
+  BOOLEAN EnableMemorySpace;
+  // Enable I/O space
+  BOOLEAN EnableIoSpace;
+  // Enable bus master
+  BOOLEAN EnableBusMaster;
 } PCI_DEVICE, *PPCI_DEVICE;