reactos/drivers/video/videoprt
diff -u -r1.28 -r1.29
--- videoprt.c 24 Nov 2004 11:12:19 -0000 1.28
+++ videoprt.c 19 Dec 2004 15:51:51 -0000 1.29
@@ -18,7 +18,7 @@
* If not, write to the Free Software Foundation,
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*
- * $Id: videoprt.c,v 1.28 2004/11/24 11:12:19 ekohl Exp $
+ * $Id: videoprt.c,v 1.29 2004/12/19 15:51:51 navaraf Exp $
*/
#include "videoprt.h"
@@ -445,7 +445,8 @@
}
if (PhysicalDeviceObject != NULL)
- IoAttachDeviceToDeviceStack(DeviceObject, PhysicalDeviceObject);
+ DeviceExtension->NextDeviceObject = IoAttachDeviceToDeviceStack(
+ DeviceObject, PhysicalDeviceObject);
DPRINT("STATUS_SUCCESS\n");
return STATUS_SUCCESS;
reactos/drivers/video/videoprt
diff -u -r1.12 -r1.13
--- videoprt.h 18 Dec 2004 22:14:39 -0000 1.12
+++ videoprt.h 19 Dec 2004 15:51:51 -0000 1.13
@@ -18,7 +18,7 @@
* If not, write to the Free Software Foundation,
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*
- * $Id: videoprt.h,v 1.12 2004/12/18 22:14:39 blight Exp $
+ * $Id: videoprt.h,v 1.13 2004/12/19 15:51:51 navaraf Exp $
*/
#ifndef VIDEOPRT_H
@@ -70,6 +70,7 @@
{
PDEVICE_OBJECT PhysicalDeviceObject;
PDEVICE_OBJECT FunctionalDeviceObject;
+ PDEVICE_OBJECT NextDeviceObject;
UNICODE_STRING RegistryPath;
PKINTERRUPT InterruptObject;
KSPIN_LOCK InterruptSpinLock;