Synchronize with trunk's revision r57599.
[reactos.git] / drivers / bus / pci / pci.h
index 5cd7e53..605be08 100644 (file)
@@ -1,6 +1,3 @@
-#ifndef __PCI_H
-#define __PCI_H
-
 #include <ntifs.h>
 #include <wdmguid.h>
 #include <stdio.h>
@@ -20,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;
 
 
@@ -175,5 +176,3 @@ NTAPI
 DriverEntry(
   IN PDRIVER_OBJECT DriverObject,
   IN PUNICODE_STRING RegistryPath);
-
-#endif  /*  __PCI_H  */