summaryrefslogtreecommitdiff
path: root/hid/hidusbfx2/sys/driver.c
diff options
context:
space:
mode:
authorWei Mao <[email protected]>2017-09-18 01:33:03 -0700
committerWei Mao <[email protected]>2017-09-18 01:33:03 -0700
commit96b567f49ef5c445d09f4fef0752da83024c6968 (patch)
tree570e07b23b67aa79e0ba2fde468d8c22522f1ade /hid/hidusbfx2/sys/driver.c
parent1f4ef4b3c7c137f19990cb98f0895ac5b9a0fa35 (diff)
Include headers from current folder
Diffstat (limited to 'hid/hidusbfx2/sys/driver.c')
-rw-r--r--hid/hidusbfx2/sys/driver.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/hid/hidusbfx2/sys/driver.c b/hid/hidusbfx2/sys/driver.c
index 825c803f..5ec4a441 100644
--- a/hid/hidusbfx2/sys/driver.c
+++ b/hid/hidusbfx2/sys/driver.c
@@ -26,7 +26,7 @@ Revision History:
--*/
-#include <hidusbfx2.h>
+#include "hidusbfx2.h"
#if defined(EVENT_TRACING)
//
@@ -110,7 +110,7 @@ Return Value:
if (!NT_SUCCESS(status)) {
TraceEvents(TRACE_LEVEL_ERROR, DBG_INIT,
"WdfDriverCreate failed with status 0x%x\n", status);
-
+
WPP_CLEANUP(DriverObject);
}
@@ -160,7 +160,7 @@ Return Value:
"HidFx2EvtDeviceAdd called\n");
//
- // Tell framework this is a filter driver. Filter drivers by default are
+ // Tell framework this is a filter driver. Filter drivers by default are
// not power policy owners. This works well for this driver because
// HIDclass driver is the power policy owner for HID minidrivers.
//
@@ -202,7 +202,7 @@ Return Value:
}
devContext = GetDeviceContext(hDevice);
-
+
WDF_IO_QUEUE_CONFIG_INIT_DEFAULT_QUEUE(&queueConfig, WdfIoQueueDispatchParallel);
queueConfig.EvtIoInternalDeviceControl = HidFx2EvtInternalDeviceControl;
@@ -246,7 +246,7 @@ Return Value:
}
//
- // Create a timer to handle debouncing of switchpack
+ // Create a timer to handle debouncing of switchpack
//
WDF_TIMER_CONFIG_INIT(
&timerConfig,