diff --git a/reactos/drivers/video/videoprt/videoprt.c b/reactos/drivers/video/videoprt/videoprt.c index 44b3c0227b7..4376834639a 100644 --- a/reactos/drivers/video/videoprt/videoprt.c +++ b/reactos/drivers/video/videoprt/videoprt.c @@ -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.20 2004/03/12 23:03:21 dwelch Exp $ + * $Id: videoprt.c,v 1.21 2004/03/13 00:41:40 dwelch Exp $ */ #include "videoprt.h" @@ -385,7 +385,7 @@ VideoPortGetRegistryParameters(IN PVOID HwDeviceExtension, QUERY_REGISTRY_CALLBACK_CONTEXT Context; PVIDEO_PORT_DEVICE_EXTENSION DeviceExtension; - /*DPRINT("VideoPortGetRegistryParameters ParameterName %S\n", ParameterName);*/ + DPRINT("VideoPortGetRegistryParameters ParameterName %S\n", ParameterName); DeviceExtension = CONTAINING_RECORD(HwDeviceExtension, VIDEO_PORT_DEVICE_EXTENSION, @@ -1224,19 +1224,6 @@ VidDispatchDeviceControl(IN PDEVICE_OBJECT DeviceObject, vrp->IoControlCode = IrpStack->Parameters.DeviceIoControl.IoControlCode; DPRINT("- IoControlCode: %x\n", vrp->IoControlCode); - DPRINT("InputBuffer %X (InLength %d OutLength %d) Routine %X\n", - Irp->AssociatedIrp.SystemBuffer, - IrpStack->Parameters.DeviceIoControl.InputBufferLength, - IrpStack->Parameters.DeviceIoControl.OutputBufferLength, - DeviceObject->DriverObject->DriverStartIo); - { - ULONG i; - for (i = 0; i < IrpStack->Parameters.DeviceIoControl.InputBufferLength; i++) - { - DbgPrint("%X ", ((PUCHAR)Irp->AssociatedIrp.SystemBuffer)[i]); - } - DbgPrint("\n"); - } /* We're assuming METHOD_BUFFERED */ vrp->InputBuffer = Irp->AssociatedIrp.SystemBuffer;