From 5fd918421a3ce73a9d24842d13ab8d26de87c357 Mon Sep 17 00:00:00 2001 From: "Enrico Weigelt, metux IT consult" Date: Tue, 10 Sep 2024 16:57:28 +0200 Subject: [PATCH] xfree86: fbdevhw: use LogMessageVerb() instead of xf86Msg() Both are doing same job, so no need to keep using an duplicated implementation. Signed-off-by: Enrico Weigelt, metux IT consult Part-of: --- hw/xfree86/fbdevhw/fbdevhwstub.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hw/xfree86/fbdevhw/fbdevhwstub.c b/hw/xfree86/fbdevhw/fbdevhwstub.c index 7d554e60a..097003888 100644 --- a/hw/xfree86/fbdevhw/fbdevhwstub.c +++ b/hw/xfree86/fbdevhw/fbdevhwstub.c @@ -28,7 +28,7 @@ fbdevHWProbe(struct pci_device *pPci, char *device, char **namep) Bool fbdevHWInit(ScrnInfoPtr pScrn, struct pci_device *pPci, char *device) { - xf86Msg(X_ERROR, "fbdevhw is not available on this platform\n"); + LogMessageVerb(X_ERROR, 1, "fbdevhw is not available on this platform\n"); return FALSE; }