[PATCH 2/3] winebus.sys: Return success from IRP_MN_START_DEVICE on the child PDO.

Zebediah Figura z.figura12 at gmail.com
Mon Apr 19 23:37:09 CDT 2021


Signed-off-by: Zebediah Figura <z.figura12 at gmail.com>
---
 dlls/winebus.sys/main.c | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/dlls/winebus.sys/main.c b/dlls/winebus.sys/main.c
index 97a333dc8c3..acd166758e7 100644
--- a/dlls/winebus.sys/main.c
+++ b/dlls/winebus.sys/main.c
@@ -607,6 +607,10 @@ static NTSTATUS pdo_pnp_dispatch(DEVICE_OBJECT *device, IRP *irp)
             status = STATUS_SUCCESS;
             break;
 
+        case IRP_MN_START_DEVICE:
+            status = STATUS_SUCCESS;
+            break;
+
         case IRP_MN_REMOVE_DEVICE:
         {
             struct pnp_device *pnp_device = ext->pnp_device;
-- 
2.30.2




More information about the wine-devel mailing list