mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 10:04:49 +00:00
Pass a fake translated resource list to a driver when a device is started.
svn path=/trunk/; revision=11695
This commit is contained in:
parent
583f2092ad
commit
f5912089d2
1 changed files with 2 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
||||||
/* $Id: device.c,v 1.84 2004/11/15 11:41:33 ekohl Exp $
|
/* $Id: device.c,v 1.85 2004/11/18 11:46:07 ekohl Exp $
|
||||||
*
|
*
|
||||||
* COPYRIGHT: See COPYING in the top level directory
|
* COPYRIGHT: See COPYING in the top level directory
|
||||||
* PROJECT: ReactOS kernel
|
* PROJECT: ReactOS kernel
|
||||||
|
@ -68,7 +68,7 @@ IopInitializeDevice(
|
||||||
/* FIXME: Should be DeviceNode->ResourceList */
|
/* FIXME: Should be DeviceNode->ResourceList */
|
||||||
Stack.Parameters.StartDevice.AllocatedResources = DeviceNode->BootResources;
|
Stack.Parameters.StartDevice.AllocatedResources = DeviceNode->BootResources;
|
||||||
/* FIXME: Should be DeviceNode->ResourceListTranslated */
|
/* FIXME: Should be DeviceNode->ResourceListTranslated */
|
||||||
Stack.Parameters.StartDevice.AllocatedResourcesTranslated = NULL;
|
Stack.Parameters.StartDevice.AllocatedResourcesTranslated = DeviceNode->BootResources;
|
||||||
|
|
||||||
Status = IopInitiatePnpIrp(
|
Status = IopInitiatePnpIrp(
|
||||||
Fdo,
|
Fdo,
|
||||||
|
|
Loading…
Reference in a new issue