mirror of
https://github.com/reactos/reactos.git
synced 2024-12-27 01:24:38 +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
|
||||
* PROJECT: ReactOS kernel
|
||||
|
@ -68,7 +68,7 @@ IopInitializeDevice(
|
|||
/* FIXME: Should be DeviceNode->ResourceList */
|
||||
Stack.Parameters.StartDevice.AllocatedResources = DeviceNode->BootResources;
|
||||
/* FIXME: Should be DeviceNode->ResourceListTranslated */
|
||||
Stack.Parameters.StartDevice.AllocatedResourcesTranslated = NULL;
|
||||
Stack.Parameters.StartDevice.AllocatedResourcesTranslated = DeviceNode->BootResources;
|
||||
|
||||
Status = IopInitiatePnpIrp(
|
||||
Fdo,
|
||||
|
|
Loading…
Reference in a new issue