Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

drm: Add macro to export functions only when CONFIG_DRM_DEBUG_SELFTEST is enabled

If we want to be able to write drmselftests for non-static core
functions that are not intended to be used by drivers we need this
functions to be exported.

This adds a macro that is tied of CONFIG_DRM_DEBUG_SELFTEST, and uses
that to export drm_internal_framebuffer_create, in order for
subsequent patches to be able to test it.

Reviewed-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Signed-off-by: Alexandru Gheorghe <alexandru-cosmin.gheorghe@arm.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20181101151051.1509-7-alexandru-cosmin.gheorghe@arm.com

+7
+1
drivers/gpu/drm/drm_framebuffer.c
··· 323 323 324 324 return fb; 325 325 } 326 + EXPORT_SYMBOL_FOR_TESTS_ONLY(drm_internal_framebuffer_create); 326 327 327 328 /** 328 329 * drm_mode_addfb2 - add an FB to the graphics configuration
+6
include/drm/drmP.h
··· 110 110 return true; 111 111 } 112 112 113 + #if defined(CONFIG_DRM_DEBUG_SELFTEST_MODULE) 114 + #define EXPORT_SYMBOL_FOR_TESTS_ONLY(x) EXPORT_SYMBOL(x) 115 + #else 116 + #define EXPORT_SYMBOL_FOR_TESTS_ONLY(x) 117 + #endif 118 + 113 119 #endif