summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam Jackson <ajax@redhat.com>2018-10-31 11:43:33 -0400
committerAdam Jackson <ajax@redhat.com>2018-10-31 11:43:33 -0400
commitc901adc327bce4c0d19caf350cbcb0cd5254f306 (patch)
treed076da5ff9d56dca118a1d0d2ac477af51a83d11
parent52451f1f89890e3088c6fd9d7da0708fd9263950 (diff)
modesetting: Hush an unimportant log message
Verbosity level 0 is "always print", just make it a normal message. Signed-off-by: Adam Jackson <ajax@redhat.com>
-rw-r--r--hw/xfree86/drivers/modesetting/drmmode_display.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/hw/xfree86/drivers/modesetting/drmmode_display.c b/hw/xfree86/drivers/modesetting/drmmode_display.c
index 9717d9d39..939f07f8f 100644
--- a/hw/xfree86/drivers/modesetting/drmmode_display.c
+++ b/hw/xfree86/drivers/modesetting/drmmode_display.c
@@ -3558,9 +3558,9 @@ drmmode_load_palette(ScrnInfoPtr pScrn, int numColors,
Bool
drmmode_setup_colormap(ScreenPtr pScreen, ScrnInfoPtr pScrn)
{
- xf86DrvMsgVerb(pScrn->scrnIndex, X_INFO, 0,
- "Initializing kms color map for depth %d, %d bpc.\n",
- pScrn->depth, pScrn->rgbBits);
+ xf86DrvMsg(pScrn->scrnIndex, X_INFO,
+ "Initializing kms color map for depth %d, %d bpc.\n",
+ pScrn->depth, pScrn->rgbBits);
if (!miCreateDefColormap(pScreen))
return FALSE;