summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVidush Vishwanath <[email protected]>2019-08-13 09:52:58 -0700
committerAdonais Romero González <[email protected]>2019-08-13 09:52:58 -0700
commit930fc2a5a3fcc5e89f91ba16a6ec578f353226bc (patch)
tree94d9d3ecd9755294ad4542d5cdbb5a0db47a1a59
parent02966f106744e35112bf0e70e8a7320f20d89c3f (diff)
Fix Comments for DriverEntry function (#396)753067530575304753037530275301753007529975298752977529675295
-rw-r--r--general/DCHU/osrfx2_DCHU_base/osrfx2_DCHU_base/driver.c2
-rw-r--r--general/WinHEC 2017 Lab/Toaster Driver/toaster/toaster.c2
-rw-r--r--general/toaster/toastDrv/kmdf/bus/dynamic/busenum.c2
-rw-r--r--general/toaster/toastDrv/kmdf/bus/static/busenum.c2
-rw-r--r--general/toaster/toastDrv/kmdf/filter/generic/filter.c2
-rw-r--r--general/toaster/toastDrv/kmdf/func/featured/toaster.c2
-rw-r--r--general/toaster/toastDrv/kmdf/func/simple/toaster.c2
-rw-r--r--general/toaster/toastDrv/kmdf/toastmon/toastmon.c2
-rw-r--r--general/toaster/umdf2/filter/generic/filter.c2
-rw-r--r--general/toaster/umdf2/func/featured/toaster.c2
-rw-r--r--general/toaster/umdf2/func/simple/toaster.c2
-rw-r--r--input/kbfiltr/sys/kbfiltr.c2
-rw-r--r--input/moufiltr/moufiltr.c2
-rw-r--r--pofx/UMDF2/Driver/SingleComp/driver.c2
-rw-r--r--pofx/WDF/Driver/SingleComp/driver.c2
-rw-r--r--usb/kmdf_enumswitches/sys/driver.c2
-rw-r--r--usb/kmdf_fx2/driver/driver.c2
-rw-r--r--usb/umdf2_fx2/driver/driver.c2
-rw-r--r--usb/umdf_filter_kmdf/kmdf_driver/driver.c2
-rw-r--r--usb/usbsamp/sys/driver.c2
20 files changed, 20 insertions, 20 deletions
diff --git a/general/DCHU/osrfx2_DCHU_base/osrfx2_DCHU_base/driver.c b/general/DCHU/osrfx2_DCHU_base/osrfx2_DCHU_base/driver.c
index 2be5d2ed..9f28204f 100644
--- a/general/DCHU/osrfx2_DCHU_base/osrfx2_DCHU_base/driver.c
+++ b/general/DCHU/osrfx2_DCHU_base/osrfx2_DCHU_base/driver.c
@@ -120,7 +120,7 @@ DriverEntry(
EventRegisterOSRUSBFX2();
//
- // Initiialize driver config to control the attributes that
+ // Initialize driver config to control the attributes that
// are global to the driver. Note that framework by default
// provides a driver unload routine. If you create any resources
// in the DriverEntry and want to be cleaned in driver unload,
diff --git a/general/WinHEC 2017 Lab/Toaster Driver/toaster/toaster.c b/general/WinHEC 2017 Lab/Toaster Driver/toaster/toaster.c
index 6ed215db..7b117240 100644
--- a/general/WinHEC 2017 Lab/Toaster Driver/toaster/toaster.c
+++ b/general/WinHEC 2017 Lab/Toaster Driver/toaster/toaster.c
@@ -72,7 +72,7 @@ Return Value:
KdPrint(("Toaster Function Driver Sample - Driver Framework Edition.\n"));
//
- // Initiialize driver config to control the attributes that
+ // Initialize driver config to control the attributes that
// are global to the driver. Note that framework by default
// provides a driver unload routine. If DriverEntry creates any resources
// that require clean-up in driver unload,
diff --git a/general/toaster/toastDrv/kmdf/bus/dynamic/busenum.c b/general/toaster/toastDrv/kmdf/bus/dynamic/busenum.c
index 8b79bff1..e8f62064 100644
--- a/general/toaster/toastDrv/kmdf/bus/dynamic/busenum.c
+++ b/general/toaster/toastDrv/kmdf/bus/dynamic/busenum.c
@@ -58,7 +58,7 @@ Return Value:
KdPrint(("WDF Toaster Bus Driver Sample Dynamic Version.\n"));
//
- // Initiialize driver config to control the attributes that
+ // Initialize driver config to control the attributes that
// are global to the driver. Note that framework by default
// provides a driver unload routine. If you create any resources
// in the DriverEntry and want to be cleaned in driver unload,
diff --git a/general/toaster/toastDrv/kmdf/bus/static/busenum.c b/general/toaster/toastDrv/kmdf/bus/static/busenum.c
index 41e79f0f..cc54d346 100644
--- a/general/toaster/toastDrv/kmdf/bus/static/busenum.c
+++ b/general/toaster/toastDrv/kmdf/bus/static/busenum.c
@@ -59,7 +59,7 @@ Return Value:
KdPrint(("Toaster Static Bus Driver Sample - Driver Framework Edition.\n"));
//
- // Initiialize driver config to control the attributes that
+ // Initialize driver config to control the attributes that
// are global to the driver. Note that framework by default
// provides a driver unload routine. If you create any resources
// in the DriverEntry and want to be cleaned in driver unload,
diff --git a/general/toaster/toastDrv/kmdf/filter/generic/filter.c b/general/toaster/toastDrv/kmdf/filter/generic/filter.c
index c1dadac2..673f55f7 100644
--- a/general/toaster/toastDrv/kmdf/filter/generic/filter.c
+++ b/general/toaster/toastDrv/kmdf/filter/generic/filter.c
@@ -67,7 +67,7 @@ Return Value:
KdPrint(("Toaster Generic Filter Driver Sample - Driver Framework Edition.\n"));
//
- // Initiialize driver config to control the attributes that
+ // Initialize driver config to control the attributes that
// are global to the driver. Note that framework by default
// provides a driver unload routine. If you create any resources
// in the DriverEntry and want to be cleaned in driver unload,
diff --git a/general/toaster/toastDrv/kmdf/func/featured/toaster.c b/general/toaster/toastDrv/kmdf/func/featured/toaster.c
index be826982..772b0416 100644
--- a/general/toaster/toastDrv/kmdf/func/featured/toaster.c
+++ b/general/toaster/toastDrv/kmdf/func/featured/toaster.c
@@ -113,7 +113,7 @@ Return Value:
KdPrint(("WDF Toaster Function Driver Sample - Featured version\n"));
//
- // Initiialize driver config to control the attributes that
+ // Initialize driver config to control the attributes that
// are global to the driver. Note that framework by default
// provides a driver unload routine. If you create any resources
// in the DriverEntry and want to be cleaned in driver unload,
diff --git a/general/toaster/toastDrv/kmdf/func/simple/toaster.c b/general/toaster/toastDrv/kmdf/func/simple/toaster.c
index 6ed215db..7b117240 100644
--- a/general/toaster/toastDrv/kmdf/func/simple/toaster.c
+++ b/general/toaster/toastDrv/kmdf/func/simple/toaster.c
@@ -72,7 +72,7 @@ Return Value:
KdPrint(("Toaster Function Driver Sample - Driver Framework Edition.\n"));
//
- // Initiialize driver config to control the attributes that
+ // Initialize driver config to control the attributes that
// are global to the driver. Note that framework by default
// provides a driver unload routine. If DriverEntry creates any resources
// that require clean-up in driver unload,
diff --git a/general/toaster/toastDrv/kmdf/toastmon/toastmon.c b/general/toaster/toastDrv/kmdf/toastmon/toastmon.c
index 44f6f5d2..5967d019 100644
--- a/general/toaster/toastDrv/kmdf/toastmon/toastmon.c
+++ b/general/toaster/toastDrv/kmdf/toastmon/toastmon.c
@@ -77,7 +77,7 @@ Return Value:
KdPrint(("ToastMon Driver Sample - Driver Framework Edition.\n"));
//
- // Initiialize driver config to control the attributes that
+ // Initialize driver config to control the attributes that
// are global to the driver. Note that framework by default
// provides a driver unload routine. If you create any resources
// in the DriverEntry and want to be cleaned in driver unload,
diff --git a/general/toaster/umdf2/filter/generic/filter.c b/general/toaster/umdf2/filter/generic/filter.c
index d245c2ba..b2897dc5 100644
--- a/general/toaster/umdf2/filter/generic/filter.c
+++ b/general/toaster/umdf2/filter/generic/filter.c
@@ -67,7 +67,7 @@ Return Value:
KdPrint(("Toaster Generic Filter Driver Sample - Driver Framework Edition.\n"));
//
- // Initiialize driver config to control the attributes that
+ // Initialize driver config to control the attributes that
// are global to the driver. Note that framework by default
// provides a driver unload routine. If you create any resources
// in the DriverEntry and want to be cleaned in driver unload,
diff --git a/general/toaster/umdf2/func/featured/toaster.c b/general/toaster/umdf2/func/featured/toaster.c
index c25eebd4..157c1843 100644
--- a/general/toaster/umdf2/func/featured/toaster.c
+++ b/general/toaster/umdf2/func/featured/toaster.c
@@ -75,7 +75,7 @@ Return Value:
KdPrint(("WDF Toaster Function Driver Sample - Featured version\n"));
//
- // Initiialize driver config to control the attributes that
+ // Initialize driver config to control the attributes that
// are global to the driver. Note that framework by default
// provides a driver unload routine. If you create any resources
// in the DriverEntry and want to be cleaned in driver unload,
diff --git a/general/toaster/umdf2/func/simple/toaster.c b/general/toaster/umdf2/func/simple/toaster.c
index 6ed215db..7b117240 100644
--- a/general/toaster/umdf2/func/simple/toaster.c
+++ b/general/toaster/umdf2/func/simple/toaster.c
@@ -72,7 +72,7 @@ Return Value:
KdPrint(("Toaster Function Driver Sample - Driver Framework Edition.\n"));
//
- // Initiialize driver config to control the attributes that
+ // Initialize driver config to control the attributes that
// are global to the driver. Note that framework by default
// provides a driver unload routine. If DriverEntry creates any resources
// that require clean-up in driver unload,
diff --git a/input/kbfiltr/sys/kbfiltr.c b/input/kbfiltr/sys/kbfiltr.c
index e0009172..ddc78326 100644
--- a/input/kbfiltr/sys/kbfiltr.c
+++ b/input/kbfiltr/sys/kbfiltr.c
@@ -80,7 +80,7 @@ Return Value:
DebugPrint(("Built %s %s\n", __DATE__, __TIME__));
//
- // Initiialize driver config to control the attributes that
+ // Initialize driver config to control the attributes that
// are global to the driver. Note that framework by default
// provides a driver unload routine. If you create any resources
// in the DriverEntry and want to be cleaned in driver unload,
diff --git a/input/moufiltr/moufiltr.c b/input/moufiltr/moufiltr.c
index 3e97a7a1..84716db2 100644
--- a/input/moufiltr/moufiltr.c
+++ b/input/moufiltr/moufiltr.c
@@ -47,7 +47,7 @@ Routine Description:
DebugPrint(("Mouse Filter Driver Sample - Driver Framework Edition.\n"));
DebugPrint(("Built %s %s\n", __DATE__, __TIME__));
- // Initiialize driver config to control the attributes that
+ // Initialize driver config to control the attributes that
// are global to the driver. Note that framework by default
// provides a driver unload routine. If you create any resources
// in the DriverEntry and want to be cleaned in driver unload,
diff --git a/pofx/UMDF2/Driver/SingleComp/driver.c b/pofx/UMDF2/Driver/SingleComp/driver.c
index 597c742d..569a1e6a 100644
--- a/pofx/UMDF2/Driver/SingleComp/driver.c
+++ b/pofx/UMDF2/Driver/SingleComp/driver.c
@@ -70,7 +70,7 @@ Return Value:
Trace(TRACE_LEVEL_INFORMATION, "%!FUNC! Entry of driver");
//
- // Initiialize driver config to control the attributes that are global to
+ // Initialize driver config to control the attributes that are global to
// the driver. Note that framework by default provides a driver unload
// routine. If DriverEntry creates any resources that require clean-up in
// driver unload, you can manually override the default by supplying a
diff --git a/pofx/WDF/Driver/SingleComp/driver.c b/pofx/WDF/Driver/SingleComp/driver.c
index cd7b6dd1..ad3b7d43 100644
--- a/pofx/WDF/Driver/SingleComp/driver.c
+++ b/pofx/WDF/Driver/SingleComp/driver.c
@@ -79,7 +79,7 @@ Return Value:
WPP_INIT_TRACING(DriverObject, RegistryPath);
//
- // Initiialize driver config to control the attributes that are global to
+ // Initialize driver config to control the attributes that are global to
// the driver. Note that framework by default provides a driver unload
// routine. If DriverEntry creates any resources that require clean-up in
// driver unload, you can manually override the default by supplying a
diff --git a/usb/kmdf_enumswitches/sys/driver.c b/usb/kmdf_enumswitches/sys/driver.c
index 275803e6..e9e99054 100644
--- a/usb/kmdf_enumswitches/sys/driver.c
+++ b/usb/kmdf_enumswitches/sys/driver.c
@@ -107,7 +107,7 @@ Return Value:
"OSRUSBFX2 Driver Sample - Driver Framework Edition.\n");
//
- // Initiialize driver config to control the attributes that
+ // Initialize driver config to control the attributes that
// are global to the driver. Note that framework by default
// provides a driver unload routine. If you create any resources
// in the DriverEntry and want to be cleaned in driver unload,
diff --git a/usb/kmdf_fx2/driver/driver.c b/usb/kmdf_fx2/driver/driver.c
index 2c73cab2..25be851e 100644
--- a/usb/kmdf_fx2/driver/driver.c
+++ b/usb/kmdf_fx2/driver/driver.c
@@ -136,7 +136,7 @@ Return Value:
EventRegisterOSRUSBFX2();
//
- // Initiialize driver config to control the attributes that
+ // Initialize driver config to control the attributes that
// are global to the driver. Note that framework by default
// provides a driver unload routine. If you create any resources
// in the DriverEntry and want to be cleaned in driver unload,
diff --git a/usb/umdf2_fx2/driver/driver.c b/usb/umdf2_fx2/driver/driver.c
index fb00f9de..7ec5f5df 100644
--- a/usb/umdf2_fx2/driver/driver.c
+++ b/usb/umdf2_fx2/driver/driver.c
@@ -116,7 +116,7 @@ Return Value:
EventRegisterOSRUSBFX2();
//
- // Initiialize driver config to control the attributes that
+ // Initialize driver config to control the attributes that
// are global to the driver. Note that framework by default
// provides a driver unload routine. If you create any resources
// in the DriverEntry and want to be cleaned in driver unload,
diff --git a/usb/umdf_filter_kmdf/kmdf_driver/driver.c b/usb/umdf_filter_kmdf/kmdf_driver/driver.c
index 2c73cab2..25be851e 100644
--- a/usb/umdf_filter_kmdf/kmdf_driver/driver.c
+++ b/usb/umdf_filter_kmdf/kmdf_driver/driver.c
@@ -136,7 +136,7 @@ Return Value:
EventRegisterOSRUSBFX2();
//
- // Initiialize driver config to control the attributes that
+ // Initialize driver config to control the attributes that
// are global to the driver. Note that framework by default
// provides a driver unload routine. If you create any resources
// in the DriverEntry and want to be cleaned in driver unload,
diff --git a/usb/usbsamp/sys/driver.c b/usb/usbsamp/sys/driver.c
index 26d61477..68b717e4 100644
--- a/usb/usbsamp/sys/driver.c
+++ b/usb/usbsamp/sys/driver.c
@@ -72,7 +72,7 @@ Return Value:
UsbSamp_DbgPrint(3, ("Built %s %s\n", __DATE__, __TIME__));
//
- // Initiialize driver config to control the attributes that
+ // Initialize driver config to control the attributes that
// are global to the driver. Note that framework by default
// provides a driver unload routine. If you create any resources
// in the DriverEntry and want to be cleaned in driver unload,