diff options
author | Colin Ian King <colin.king@canonical.com> | 2017-09-22 17:05:16 +0100 |
---|---|---|
committer | Linus Walleij <linus.walleij@linaro.org> | 2017-10-01 01:29:45 +0200 |
commit | 4ea30958d96b3f997afadeeb9de29e6dea3a80f5 (patch) | |
tree | b91c4f32433d9138e87784d5da249e8c67d65956 /drivers/gpu/drm/tve200 | |
parent | a33d7f8c06b32ae0396dce42eeb2775644bf23b9 (diff) | |
download | linux-4ea30958d96b3f997afadeeb9de29e6dea3a80f5.tar.gz |
drm/tve200: make two functions static
The functions tve200_display_disable and tve200_display_funcs are
local to the source and do not need to be in global scope, so make
them static.
Cleans up sparse warnings:
symbol 'tve200_display_disable' was not declared. Should it be static?
symbol 'tve200_display_funcs' was not declared. Should it be static?
Signed-off-by: Colin Ian King <colin.king@canonical.com>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Link: https://patchwork.freedesktop.org/patch/msgid/20170922160516.16283-1-colin.king@canonical.com
Diffstat (limited to 'drivers/gpu/drm/tve200')
-rw-r--r-- | drivers/gpu/drm/tve200/tve200_display.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/gpu/drm/tve200/tve200_display.c b/drivers/gpu/drm/tve200/tve200_display.c index 18457de47bbc..904e38b93530 100644 --- a/drivers/gpu/drm/tve200/tve200_display.c +++ b/drivers/gpu/drm/tve200/tve200_display.c @@ -221,7 +221,7 @@ static void tve200_display_enable(struct drm_simple_display_pipe *pipe, drm_crtc_vblank_on(crtc); } -void tve200_display_disable(struct drm_simple_display_pipe *pipe) +static void tve200_display_disable(struct drm_simple_display_pipe *pipe) { struct drm_crtc *crtc = &pipe->crtc; struct drm_device *drm = crtc->dev; @@ -293,7 +293,7 @@ static int tve200_display_prepare_fb(struct drm_simple_display_pipe *pipe, return drm_fb_cma_prepare_fb(&pipe->plane, plane_state); } -const struct drm_simple_display_pipe_funcs tve200_display_funcs = { +static const struct drm_simple_display_pipe_funcs tve200_display_funcs = { .check = tve200_display_check, .enable = tve200_display_enable, .disable = tve200_display_disable, |