From: kbuild test robot Date: Fri, 23 Jun 2017 09:54:18 +0000 (+0800) Subject: drm: arcpgu: arc_pgu_crtc_mode_valid() can be static X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=2bf5ccc25c5bc3c8eaf30c589f7d3a5e7490d3b9;p=GitHub%2Fmoto-9609%2Fandroid_kernel_motorola_exynos9610.git drm: arcpgu: arc_pgu_crtc_mode_valid() can be static Signed-off-by: Fengguang Wu Signed-off-by: Daniel Vetter Link: http://patchwork.freedesktop.org/patch/msgid/20170623095418.GA68865@lkp-sbx04 --- diff --git a/drivers/gpu/drm/arc/arcpgu_crtc.c b/drivers/gpu/drm/arc/arcpgu_crtc.c index 99fbdaecf100..611af74a31c0 100644 --- a/drivers/gpu/drm/arc/arcpgu_crtc.c +++ b/drivers/gpu/drm/arc/arcpgu_crtc.c @@ -64,8 +64,8 @@ static const struct drm_crtc_funcs arc_pgu_crtc_funcs = { .atomic_destroy_state = drm_atomic_helper_crtc_destroy_state, }; -enum drm_mode_status arc_pgu_crtc_mode_valid(struct drm_crtc *crtc, - const struct drm_display_mode *mode) +static enum drm_mode_status arc_pgu_crtc_mode_valid(struct drm_crtc *crtc, + const struct drm_display_mode *mode) { struct arcpgu_drm_private *arcpgu = crtc_to_arcpgu_priv(crtc); long rate, clk_rate = mode->clock * 1000;