- Fix a typo
- Search for bad !! usage inspired by r54193

svn path=/trunk/; revision=54194
This commit is contained in:
Cameron Gutman 2011-10-18 20:36:54 +00:00
parent dddc64fe69
commit 9368b91f31

View file

@ -264,7 +264,7 @@ StreamClassStartDevice(
}
}
if (!!bUseInterrupt || DriverObjectExtension->Data.HwInterrupt == NULL || Config->BusInterruptLevel == 0 || Config->BusInterruptVector == 0)
if (!bUseInterrupt || DriverObjectExtension->Data.HwInterrupt == NULL || Config->BusInterruptLevel == 0 || Config->BusInterruptVector == 0)
{
/* requirements not satisfied */
DeviceExtension->SynchronizeFunction = StreamClassSynchronize;