mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 10:04:49 +00:00
Turn off debug print out
svn path=/trunk/; revision=8634
This commit is contained in:
parent
15989c99be
commit
64c32ff6f4
1 changed files with 5 additions and 5 deletions
|
@ -18,7 +18,7 @@
|
||||||
* If not, write to the Free Software Foundation,
|
* If not, write to the Free Software Foundation,
|
||||||
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||||
*
|
*
|
||||||
* $Id: videoprt.c,v 1.18 2004/03/10 16:10:13 navaraf Exp $
|
* $Id: videoprt.c,v 1.19 2004/03/11 00:05:00 jimtabor Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "videoprt.h"
|
#include "videoprt.h"
|
||||||
|
@ -428,7 +428,7 @@ VideoPortGetVgaStatus(IN PVOID HwDeviceExtension,
|
||||||
{
|
{
|
||||||
PVIDEO_PORT_DEVICE_EXTENSION DeviceExtension;
|
PVIDEO_PORT_DEVICE_EXTENSION DeviceExtension;
|
||||||
|
|
||||||
DPRINT1("VideoPortGetVgaStatus = %S \n", VgaStatus);
|
DPRINT("VideoPortGetVgaStatus = %x \n", VgaStatus);
|
||||||
|
|
||||||
DeviceExtension = CONTAINING_RECORD(HwDeviceExtension,
|
DeviceExtension = CONTAINING_RECORD(HwDeviceExtension,
|
||||||
VIDEO_PORT_DEVICE_EXTENSION,
|
VIDEO_PORT_DEVICE_EXTENSION,
|
||||||
|
@ -436,14 +436,14 @@ VideoPortGetVgaStatus(IN PVOID HwDeviceExtension,
|
||||||
|
|
||||||
if(KeGetCurrentIrql() == PASSIVE_LEVEL)
|
if(KeGetCurrentIrql() == PASSIVE_LEVEL)
|
||||||
{
|
{
|
||||||
DPRINT1("VideoPortGetVgaStatus1 = %S \n", VgaStatus);
|
DPRINT("VideoPortGetVgaStatus1 = %x \n", VgaStatus);
|
||||||
|
|
||||||
if ( PCIBus == DeviceExtension->AdapterInterfaceType)
|
if ( PCIBus == DeviceExtension->AdapterInterfaceType)
|
||||||
{
|
{
|
||||||
/*
|
/*
|
||||||
VgaStatus 0 == VGA not enabled, 1 == VGA enabled.
|
VgaStatus 0 == VGA not enabled, 1 == VGA enabled.
|
||||||
*/
|
*/
|
||||||
DPRINT1("VideoPortGetVgaStatus2 = %S \n", VgaStatus);
|
DPRINT("VideoPortGetVgaStatus2 = %x \n", VgaStatus);
|
||||||
|
|
||||||
/* Assumed for now */
|
/* Assumed for now */
|
||||||
|
|
||||||
|
@ -452,7 +452,7 @@ VideoPortGetVgaStatus(IN PVOID HwDeviceExtension,
|
||||||
return STATUS_SUCCESS;
|
return STATUS_SUCCESS;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
DPRINT1("VideoPortGetVgaStatus3 = %S \n", VgaStatus);
|
DPRINT("VideoPortGetVgaStatus3 = %x \n", VgaStatus);
|
||||||
|
|
||||||
return ERROR_INVALID_FUNCTION;
|
return ERROR_INVALID_FUNCTION;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue