drivers/gpu/drm/drm_color_mgmt.c:522:5: warning: symbol 'drm_plane_create_sdr_white_level_property' was not declared. Should it be static? Reported-by: kernel test robot Signed-off-by: kernel test robot --- drm_color_mgmt.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/gpu/drm/drm_color_mgmt.c b/drivers/gpu/drm/drm_color_mgmt.c index a0b77d7d0565c..7f70ab5a56356 100644 --- a/drivers/gpu/drm/drm_color_mgmt.c +++ b/drivers/gpu/drm/drm_color_mgmt.c @@ -519,7 +519,7 @@ const char *drm_get_color_range_name(enum drm_color_range range) return color_range_name[range]; } -int drm_plane_create_sdr_white_level_property(struct drm_plane *plane){ +static int drm_plane_create_sdr_white_level_property(struct drm_plane *plane){ struct drm_property *prop;