Module: wine Branch: master Commit: 1fdcf1f18390fa83649d95ca1bfcc29fd4b15b1d URL: https://source.winehq.org/git/wine.git/?a=commit;h=1fdcf1f18390fa83649d95ca1...
Author: Zebediah Figura z.figura12@gmail.com Date: Mon Apr 19 23:37:09 2021 -0500
winebus.sys: Return success from IRP_MN_START_DEVICE on the child PDO.
Signed-off-by: Zebediah Figura z.figura12@gmail.com Signed-off-by: Alexandre Julliard julliard@winehq.org
---
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;