aboutsummaryrefslogtreecommitdiffstats
path: root/include/drm/drm_util.h
diff options
context:
space:
mode:
authorSam Ravnborg <sam@ravnborg.org>2019-01-12 20:32:45 +0100
committerDaniel Vetter <daniel.vetter@ffwll.ch>2019-01-14 10:58:37 +0100
commit21376e2c3c5bad5e87ba700c055c8a8235c2bfd5 (patch)
treead48893cdbc1b0b2e14c604aafa9773535b52746 /include/drm/drm_util.h
parentdrm: move drm_can_sleep() to drm_util.h (diff)
downloadlinux-dev-21376e2c3c5bad5e87ba700c055c8a8235c2bfd5.tar.xz
linux-dev-21376e2c3c5bad5e87ba700c055c8a8235c2bfd5.zip
drm: move EXPORT_SYMBOL_FOR_TESTS_ONLY to drm_util.h
In the quest to get rid of drmP.h move the newly added EXPORT_SYMBOL_FOR_TESTS_ONLY to drm_util.h. Fix the single user. Add a note to drmP.h to avoid further use of it. Signed-off-by: Sam Ravnborg <sam@ravnborg.org> Cc: Maarten Lankhorst <maarten.lankhorst@linux.intel.com> Cc: Maxime Ripard <maxime.ripard@bootlin.com> Cc: Sean Paul <sean@poorly.run> Cc: David Airlie <airlied@linux.ie> Cc: Daniel Vetter <daniel@ffwll.ch> Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch> Link: https://patchwork.freedesktop.org/patch/msgid/20190112193251.20450-3-sam@ravnborg.org
Diffstat (limited to '')
-rw-r--r--include/drm/drm_util.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/include/drm/drm_util.h b/include/drm/drm_util.h
index f776a55e5508..0500da65b1d1 100644
--- a/include/drm/drm_util.h
+++ b/include/drm/drm_util.h
@@ -37,6 +37,16 @@
#include <linux/kgdb.h>
#include <linux/smp.h>
+/*
+ * Use EXPORT_SYMBOL_FOR_TESTS_ONLY() for functions that shall
+ * only be visible for drmselftests.
+ */
+#if defined(CONFIG_DRM_DEBUG_SELFTEST_MODULE)
+#define EXPORT_SYMBOL_FOR_TESTS_ONLY(x) EXPORT_SYMBOL(x)
+#else
+#define EXPORT_SYMBOL_FOR_TESTS_ONLY(x)
+#endif
+
/**
* for_each_if - helper for handling conditionals in various for_each macros
* @condition: The condition to check