From 0d7040d3bbbe4978ae3ea08293a289726df721cb Mon Sep 17 00:00:00 2001 From: Filip Navara Date: Tue, 19 Oct 2004 19:39:23 +0000 Subject: [PATCH] - Successfully complete IRP_MN_START_DEVICE and IRP_MN_STOP_DEVICE so that the drivers lower in the device stack can work. svn path=/trunk/; revision=11335 --- reactos/drivers/bus/pci/pdo.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/reactos/drivers/bus/pci/pdo.c b/reactos/drivers/bus/pci/pdo.c index 83de4ae4e10..f05af86c0a0 100644 --- a/reactos/drivers/bus/pci/pdo.c +++ b/reactos/drivers/bus/pci/pdo.c @@ -1,4 +1,4 @@ -/* $Id: pdo.c,v 1.9 2004/08/20 13:33:51 ekohl Exp $ +/* $Id: pdo.c,v 1.10 2004/10/19 19:39:23 navaraf Exp $ * * PROJECT: ReactOS PCI bus driver * FILE: pdo.c @@ -999,13 +999,17 @@ PdoPnpControl( case IRP_MN_SET_LOCK: break; +#endif case IRP_MN_START_DEVICE: + Status = STATUS_SUCCESS; break; case IRP_MN_STOP_DEVICE: + Status = STATUS_SUCCESS; break; +#if 0 case IRP_MN_SURPRISE_REMOVAL: break; #endif