[KS] Tabs => Spaces. NFC.

svn path=/trunk/; revision=66847
This commit is contained in:
Amine Khaldi
2015-03-21 09:36:40 +00:00
parent 79c5918656
commit 5930d62892
+7 -7
View File
@@ -272,8 +272,8 @@ KspCreateDeviceAssociation(
/* check if the device is already present */
Entry = DeviceEntry->DeviceInterfaceList.Flink;
DPRINT1("KspCreateDeviceAssociation ReferenceString %S\n", ReferenceString);
DPRINT1("KspCreateDeviceAssociation InterfaceString %S\n", InterfaceString);
DPRINT1("KspCreateDeviceAssociation ReferenceString %S\n", ReferenceString);
DPRINT1("KspCreateDeviceAssociation InterfaceString %S\n", InterfaceString);
while(Entry != &DeviceEntry->DeviceInterfaceList)
{
@@ -690,7 +690,7 @@ KspDoReparseForIrp(
Length += 2;
/* allocate buffer */
Buffer = ExAllocatePoolWithTag(NonPagedPool, Length * sizeof(WCHAR), 'mNoI');
Buffer = ExAllocatePoolWithTag(NonPagedPool, Length * sizeof(WCHAR), 'mNoI');
if (!Buffer)
{
/* no resources */
@@ -1229,14 +1229,14 @@ KspBusWorkerRoutine(
}
else if (DeviceEntry->DeviceState == Started)
{
/* release spin lock */
KeReleaseSpinLock(&BusDeviceExtension->Lock, OldLevel);
/* release spin lock */
KeReleaseSpinLock(&BusDeviceExtension->Lock, OldLevel);
/* found pending irps */
KspCompletePendingIrps(DeviceEntry, STATUS_REPARSE);
/* re-acquire lock */
KeAcquireSpinLock(&BusDeviceExtension->Lock, &OldLevel);
/* re-acquire lock */
KeAcquireSpinLock(&BusDeviceExtension->Lock, &OldLevel);
}
}