Displaying 1 result from an estimated 1 matches for "wdfdevice".
Did you mean:
iddevice
2007 Nov 02
0
[PATCH] PVWin: Fix warnings
...tatus = STATUS_SUCCESS;
PCM_PARTIAL_RESOURCE_DESCRIPTOR descriptor;
ULONG i;
- PXENPCI_DEVICE_DATA deviceData = GetDeviceData(Device);
+
+ UNREFERENCED_PARAMETER(Device);
KdPrint((__DRIVER_NAME " --> EvtDevicePrepareHardware\n"));
@@ -457,6 +434,8 @@ XenPCI_ReleaseHardware(WDFDEVICE Device,
{
UNREFERENCED_PARAMETER(Device);
UNREFERENCED_PARAMETER(ResourcesTranslated);
+
+ return STATUS_SUCCESS;
}
static NTSTATUS
@@ -483,13 +462,13 @@ XenPCI_D0EntryPostInterruptsEnabled(WDFD
XenPCI_D0EntryPostInterruptsEnabled(WDFDEVICE Device,
WDF_POWER_DEVICE_STATE PreviousState)...