From: Chris Wilson Date: Fri, 27 Oct 2017 11:06:02 +0000 (+0100) Subject: drm: Enable pr_debug() for drm_printer X-Git-Url: http://git.cdn.openwrt.org/?a=commitdiff_plain;h=79a5ad2fdb3cb48e9c4e9d0d7688f0401cdb85d5;p=openwrt%2Fstaging%2Fblogic.git drm: Enable pr_debug() for drm_printer pr_debug() is conditionally compiled and requires either dynamic-debugging to be enabled or for the code to opt-in using #define DEBUG. Since drm_print provides a central debugging facility using pr_debug(), make sure it will always produce output. Signed-off-by: Chris Wilson Cc: Rob Clark Cc: Daniel Vetter Signed-off-by: Sean Paul Link: https://patchwork.freedesktop.org/patch/msgid/20171027110602.31519-1-chris@chris-wilson.co.uk --- diff --git a/drivers/gpu/drm/drm_print.c b/drivers/gpu/drm/drm_print.c index 0b3bf476dc4b..82ff327eb2df 100644 --- a/drivers/gpu/drm/drm_print.c +++ b/drivers/gpu/drm/drm_print.c @@ -23,6 +23,8 @@ * Rob Clark */ +#define DEBUG /* for pr_debug() */ + #include #include #include