[NTOS:IO] Do not translate resources of type CmResourceTypeDevicePrivate

CmResourceTypeDevicePrivate resources are created the the bus driver, for its own later use,
when children devices will receive the IRP_MN_START_DEVICE.

Do not translate them, as they have no meaning outside bus driver.
This commit is contained in:
Hervé Poussineau 2020-11-03 22:04:41 +01:00
parent 65cc802b73
commit 129e009a2c

View file

@ -1075,6 +1075,7 @@ IopTranslateDeviceResources(
case CmResourceTypeDma:
case CmResourceTypeBusNumber:
case CmResourceTypeDevicePrivate:
case CmResourceTypeDeviceSpecific:
/* Nothing to do */
break;