summaryrefslogtreecommitdiffstats
path: root/include/drm/drm_print.h
diff options
context:
space:
mode:
authorLyude Paul <lyude@redhat.com>2018-07-18 17:57:16 -0400
committerLyude Paul <lyude@redhat.com>2018-07-19 13:10:49 -0400
commit106b6c39c870c1f7628ba41693e571f419b1981d (patch)
tree232d332914967d2582d6d4aedb5f339820ff5870 /include/drm/drm_print.h
parentdcf496a6a608733ef18a2f757b55111df9eadca6 (diff)
downloadlinux-0-day-106b6c39c870c1f7628ba41693e571f419b1981d.tar.gz
linux-0-day-106b6c39c870c1f7628ba41693e571f419b1981d.tar.xz
drm/print: Fix DRM_DEBUG_DP macro
This isn't supposed to take dev as an argument, I guess no one noticed! Signed-off-by: Lyude Paul <lyude@redhat.com> Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com> Link: https://patchwork.freedesktop.org/patch/msgid/20180718215716.5784-1-lyude@redhat.com
Diffstat (limited to 'include/drm/drm_print.h')
-rw-r--r--include/drm/drm_print.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/drm/drm_print.h b/include/drm/drm_print.h
index 767c90b654c53..fc08584a51019 100644
--- a/include/drm/drm_print.h
+++ b/include/drm/drm_print.h
@@ -310,7 +310,7 @@ void drm_err(const char *format, ...);
#define DRM_DEV_DEBUG_DP(dev, fmt, ...) \
drm_dev_dbg(dev, DRM_UT_DP, fmt, ## __VA_ARGS__)
-#define DRM_DEBUG_DP(dev, fmt, ...) \
+#define DRM_DEBUG_DP(fmt, ...) \
drm_dbg(DRM_UT_DP, fmt, ## __VA_ARGS__)
#define _DRM_DEV_DEFINE_DEBUG_RATELIMITED(dev, category, fmt, ...) \