summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlon Levy <alevy@redhat.com>2011-06-15 16:02:39 +0200
committerAlon Levy <alevy@redhat.com>2011-06-20 12:19:25 +0200
commit9bacad058c96c8c587094917fc37fe987f91fa43 (patch)
tree669c70e5bde69c03b7d4586f464dd56305d930c8
parent00d7702f400002a1f92fe4f9e7f1547a479fcc2c (diff)
miniport/qxl: raise loglevel for mode prints
-rw-r--r--miniport/qxl.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/miniport/qxl.c b/miniport/qxl.c
index a44f72c..412c4e7 100644
--- a/miniport/qxl.c
+++ b/miniport/qxl.c
@@ -424,7 +424,7 @@ VP_STATUS SetVideoModeInfo(QXLExtension *dev, PVIDEO_MODE_INFORMATION video_mode
{
ULONG color_bits;
PAGED_CODE();
- DEBUG_PRINT((dev, 0, "%s: x %u y %u bits %u stride %u orientation %u\n",
+ DEBUG_PRINT((dev, 5, "%s: x %u y %u bits %u stride %u orientation %u\n",
__FUNCTION__, qxl_mode->x_res, qxl_mode->y_res,
qxl_mode->bits, qxl_mode->stride, qxl_mode->orientation));
@@ -451,7 +451,7 @@ VP_STATUS SetVideoModeInfo(QXLExtension *dev, PVIDEO_MODE_INFORMATION video_mode
video_mode->VideoMemoryBitmapWidth = qxl_mode->x_res;
video_mode->VideoMemoryBitmapHeight = qxl_mode->y_res;
video_mode->DriverSpecificAttributeFlags = qxl_mode->orientation;
- DEBUG_PRINT((dev, 0, "%s OK\n", __FUNCTION__));
+ DEBUG_PRINT((dev, 5, "%s OK\n", __FUNCTION__));
return NO_ERROR;
}