mirror of
https://github.com/reactos/reactos.git
synced 2024-11-20 06:15:26 +00:00
[HALX86] Restore Windows compatibility on reporting device IDs
And forwarding IRPs from FDO to PDO This along with8aff2c9de7
reverts the commit74b889b397
This commit is contained in:
parent
f91efe1502
commit
8248f02ff4
2 changed files with 34 additions and 12 deletions
|
@ -561,10 +561,6 @@ HalpQueryIdFdo(IN PDEVICE_OBJECT DeviceObject,
|
|||
switch (IdType)
|
||||
{
|
||||
case BusQueryDeviceID:
|
||||
/* HACK */
|
||||
Id = L"Root\\ACPI_HAL";
|
||||
break;
|
||||
|
||||
case BusQueryHardwareIDs:
|
||||
|
||||
/* This is our hardware ID */
|
||||
|
@ -676,11 +672,26 @@ HalpDispatchPnp(IN PDEVICE_OBJECT DeviceObject,
|
|||
default:
|
||||
|
||||
DPRINT("Other IRP: %lx\n", Minor);
|
||||
Status = Irp->IoStatus.Status;
|
||||
Status = STATUS_NOT_SUPPORTED;
|
||||
break;
|
||||
}
|
||||
|
||||
/* Nowhere for the IRP to go since we also own the PDO */
|
||||
/* What happpened? */
|
||||
if ((NT_SUCCESS(Status)) || (Status == STATUS_NOT_SUPPORTED))
|
||||
{
|
||||
/* Set the IRP status, unless this isn't understood */
|
||||
if (Status != STATUS_NOT_SUPPORTED)
|
||||
{
|
||||
Irp->IoStatus.Status = Status;
|
||||
}
|
||||
|
||||
/* Pass it on */
|
||||
IoSkipCurrentIrpStackLocation(Irp);
|
||||
return IoCallDriver(FdoExtension->AttachedDeviceObject, Irp);
|
||||
}
|
||||
|
||||
/* Otherwise, we failed, so set the status and complete the request */
|
||||
DPRINT1("IRP failed with status: %lx\n", Status);
|
||||
Irp->IoStatus.Status = Status;
|
||||
IoCompleteRequest(Irp, IO_NO_INCREMENT);
|
||||
return Status;
|
||||
|
|
|
@ -559,10 +559,6 @@ HalpQueryIdFdo(IN PDEVICE_OBJECT DeviceObject,
|
|||
switch (IdType)
|
||||
{
|
||||
case BusQueryDeviceID:
|
||||
/* HACK */
|
||||
Id = L"Root\\PCI_HAL";
|
||||
break;
|
||||
|
||||
case BusQueryHardwareIDs:
|
||||
|
||||
/* This is our hardware ID */
|
||||
|
@ -673,11 +669,26 @@ HalpDispatchPnp(IN PDEVICE_OBJECT DeviceObject,
|
|||
default:
|
||||
|
||||
DPRINT("Other IRP: %lx\n", Minor);
|
||||
Status = Irp->IoStatus.Status;
|
||||
Status = STATUS_NOT_SUPPORTED;
|
||||
break;
|
||||
}
|
||||
|
||||
/* Nowhere for the IRP to go since we also own the PDO */
|
||||
/* What happpened? */
|
||||
if ((NT_SUCCESS(Status)) || (Status == STATUS_NOT_SUPPORTED))
|
||||
{
|
||||
/* Set the IRP status, unless this isn't understood */
|
||||
if (Status != STATUS_NOT_SUPPORTED)
|
||||
{
|
||||
Irp->IoStatus.Status = Status;
|
||||
}
|
||||
|
||||
/* Pass it on */
|
||||
IoSkipCurrentIrpStackLocation(Irp);
|
||||
return IoCallDriver(FdoExtension->AttachedDeviceObject, Irp);
|
||||
}
|
||||
|
||||
/* Otherwise, we failed, so set the status and complete the request */
|
||||
DPRINT1("IRP failed with status: %lx\n", Status);
|
||||
Irp->IoStatus.Status = Status;
|
||||
IoCompleteRequest(Irp, IO_NO_INCREMENT);
|
||||
return Status;
|
||||
|
|
Loading…
Reference in a new issue