From mboxrd@z Thu Jan 1 00:00:00 1970 Content-Type: multipart/mixed; boundary="===============7658032676738281951==" MIME-Version: 1.0 From: kernel test robot To: kbuild-all@lists.01.org Subject: [RFC PATCH] drm/color: drm_plane_create_sdr_white_level_property() can be static Date: Tue, 27 Apr 2021 05:45:27 +0800 Message-ID: <20210426214527.GA42364@5e7db7ded73e> In-Reply-To: <20210426173852.484368-4-harry.wentland@amd.com> List-Id: --===============7658032676738281951== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable drivers/gpu/drm/drm_color_mgmt.c:522:5: warning: symbol 'drm_plane_create_s= dr_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_m= gmt.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_ran= ge 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 *pla= ne){ = struct drm_property *prop; =20 --===============7658032676738281951==--