mirror of
https://github.com/reactos/reactos.git
synced 2025-01-06 06:20:13 +00:00
[SERIAL]
- Properly stub SerialPower CORE-11648 svn path=/trunk/; revision=71974
This commit is contained in:
parent
40e83ead42
commit
6ab411d1dc
1 changed files with 7 additions and 4 deletions
|
@ -16,9 +16,12 @@ SerialPower(
|
||||||
IN PDEVICE_OBJECT DeviceObject,
|
IN PDEVICE_OBJECT DeviceObject,
|
||||||
IN PIRP Irp)
|
IN PIRP Irp)
|
||||||
{
|
{
|
||||||
|
PSERIAL_DEVICE_EXTENSION DeviceExtension;
|
||||||
|
|
||||||
TRACE_(SERIAL, "IRP_MJ_POWER dispatch\n");
|
TRACE_(SERIAL, "IRP_MJ_POWER dispatch\n");
|
||||||
Irp->IoStatus.Information = 0;
|
|
||||||
Irp->IoStatus.Status = STATUS_SUCCESS;
|
DeviceExtension = DeviceObject->DeviceExtension;
|
||||||
IoCompleteRequest(Irp, IO_NO_INCREMENT);
|
PoStartNextPowerIrp(Irp);
|
||||||
return STATUS_SUCCESS;
|
IoSkipCurrentIrpStackLocation(Irp);
|
||||||
|
return PoCallDriver(DeviceExtension->LowerDevice, Irp);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue