[USBCCGP]
authorAmine Khaldi <amine.khaldi@reactos.org>
Mon, 3 Feb 2014 10:50:41 +0000 (10:50 +0000)
committerAmine Khaldi <amine.khaldi@reactos.org>
Mon, 3 Feb 2014 10:50:41 +0000 (10:50 +0000)
* Remove one time inclusions from the main header and put them back where they belong.
* Improve header inclusions.
CORE-7716

svn path=/trunk/; revision=61951

reactos/drivers/usb/usbccgp/descriptor.c
reactos/drivers/usb/usbccgp/misc.c
reactos/drivers/usb/usbccgp/pdo.c
reactos/drivers/usb/usbccgp/usbccgp.h

index ba17339..4a8a9c8 100644 (file)
@@ -545,4 +545,3 @@ USBCCGP_SelectConfiguration(
     //
     return Status;
 }
-
index e65cb3f..807be49 100644 (file)
@@ -190,4 +190,4 @@ DumpFunctionDescriptor(
             DPRINT1(" Index %lu iInterface %x\n", SubIndex, FunctionDescriptor[Index].InterfaceDescriptorList[SubIndex]->iInterface);
         }
     }
-}
\ No newline at end of file
+}
index 0efcc80..9810344 100644 (file)
@@ -11,6 +11,8 @@
 
 #include "usbccgp.h"
 
+#include <ntddk.h>
+
 #define NDEBUG
 #include <debug.h>
 
index d722b47..640760f 100644 (file)
@@ -1,14 +1,11 @@
 #ifndef USBEHCI_H__
 #define USBEHCI_H__
 
-#include <ntddk.h>
+#include <wdm.h>
 #include <hubbusif.h>
 #include <usbbusif.h>
 #include <usbdlib.h>
 
-/* FIXME:
-#include <usbprotocoldefs.h> */
-
 #include <stdio.h>
 
 typedef struct
@@ -151,4 +148,4 @@ NTSTATUS
 USBCCGP_EnumerateFunctions(
     IN PDEVICE_OBJECT DeviceObject);
 
-#endif
+#endif /* USBEHCI_H__ */