From 08998230789ff15843f726d7231ec0de2f67be6b Mon Sep 17 00:00:00 2001 From: Peter Hutterer Date: Fri, 12 Apr 2013 09:14:53 +1000 Subject: [PATCH] xfree86: change a log message This path is technically executed through config/udev, but having two messages in the form "config/udev: Adding drm device" makes it appear as if the udev filters are wrong and it's trying to add the same device twice. In fact, it's only one device, only added once, but a duplicate log message. Signed-off-by: Peter Hutterer Reviewed-by: Dave Airlie (cherry picked from commit 131f883f85b9b734e5e5652f16ba1d3b5f4de12f) --- hw/xfree86/os-support/linux/lnx_platform.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/hw/xfree86/os-support/linux/lnx_platform.c b/hw/xfree86/os-support/linux/lnx_platform.c index 76f5583dd..2bc8214f0 100644 --- a/hw/xfree86/os-support/linux/lnx_platform.c +++ b/hw/xfree86/os-support/linux/lnx_platform.c @@ -116,8 +116,7 @@ xf86PlatformDeviceProbe(struct OdevAttributes *attribs) if (i != xf86_num_platform_devices) goto out_free; - LogMessage(X_INFO, "config/udev: Adding drm device (%s)\n", - path); + LogMessage(X_INFO, "xfree86: Adding drm device (%s)\n", path); ret = get_drm_info(attribs, path); if (ret == FALSE)