drm_get_color_range_name can be useful to print debugging information. Export it so it could be used from VKMS.
Signed-off-by: Louis Chauvet <[email protected]> --- drivers/gpu/drm/drm_color_mgmt.c | 2 +- drivers/gpu/drm/drm_crtc_internal.h | 4 ---- include/drm/drm_color_mgmt.h | 1 + 3 files changed, 2 insertions(+), 5 deletions(-) diff --git a/drivers/gpu/drm/drm_color_mgmt.c b/drivers/gpu/drm/drm_color_mgmt.c index b0a3be3cc016..5b24b9843531 100644 --- a/drivers/gpu/drm/drm_color_mgmt.c +++ b/drivers/gpu/drm/drm_color_mgmt.c @@ -512,7 +512,7 @@ const char *drm_get_color_range_name(enum drm_color_range range) return color_range_name[range]; } -EXPORT_SYMBOL_IF_KUNIT(drm_get_color_range_name); +EXPORT_SYMBOL(drm_get_color_range_name); /** * drm_plane_create_color_properties - color encoding related plane properties diff --git a/drivers/gpu/drm/drm_crtc_internal.h b/drivers/gpu/drm/drm_crtc_internal.h index 68fd5385917f..9141127a16ab 100644 --- a/drivers/gpu/drm/drm_crtc_internal.h +++ b/drivers/gpu/drm/drm_crtc_internal.h @@ -38,7 +38,6 @@ #include <linux/err.h> #include <linux/types.h> -enum drm_color_range; enum drm_connector_force; enum drm_mode_status; @@ -119,9 +118,6 @@ int drm_mode_mmap_dumb_ioctl(struct drm_device *dev, int drm_mode_destroy_dumb_ioctl(struct drm_device *dev, void *data, struct drm_file *file_priv); -/* drm_color_mgmt.c */ -const char *drm_get_color_range_name(enum drm_color_range range); - /* IOCTLs */ int drm_mode_gamma_get_ioctl(struct drm_device *dev, void *data, struct drm_file *file_priv); diff --git a/include/drm/drm_color_mgmt.h b/include/drm/drm_color_mgmt.h index eb55bdd33f50..0d25b7d9cb29 100644 --- a/include/drm/drm_color_mgmt.h +++ b/include/drm/drm_color_mgmt.h @@ -86,6 +86,7 @@ enum drm_color_range { }; const char *drm_get_color_encoding_name(enum drm_color_encoding encoding); +const char *drm_get_color_range_name(enum drm_color_range range); int drm_plane_create_color_properties(struct drm_plane *plane, u32 supported_encodings, -- 2.51.0
