mirror of
https://github.com/reactos/reactos.git
synced 2025-01-03 21:09:19 +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 PIRP Irp)
|
||||
{
|
||||
PSERIAL_DEVICE_EXTENSION DeviceExtension;
|
||||
|
||||
TRACE_(SERIAL, "IRP_MJ_POWER dispatch\n");
|
||||
Irp->IoStatus.Information = 0;
|
||||
Irp->IoStatus.Status = STATUS_SUCCESS;
|
||||
IoCompleteRequest(Irp, IO_NO_INCREMENT);
|
||||
return STATUS_SUCCESS;
|
||||
|
||||
DeviceExtension = DeviceObject->DeviceExtension;
|
||||
PoStartNextPowerIrp(Irp);
|
||||
IoSkipCurrentIrpStackLocation(Irp);
|
||||
return PoCallDriver(DeviceExtension->LowerDevice, Irp);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue