diff options
author | Colin Ian King <colin.king@canonical.com> | 2017-08-16 11:23:06 +0200 |
---|---|---|
committer | Noralf Trønnes <noralf@tronnes.org> | 2017-08-16 21:39:26 +0200 |
commit | f3bbc908e87384785c26b6fa71d1c0beb126797c (patch) | |
tree | 0a3dd99cf375b7c7a905901b80877c3e77c815ca | |
parent | MAINTAINERS: Add drm/tinydrm maintainer entry (diff) | |
download | linux-f3bbc908e87384785c26b6fa71d1c0beb126797c.tar.xz linux-f3bbc908e87384785c26b6fa71d1c0beb126797c.zip |
drm/tinydrm: make function st7586_pipe_enable static
The function st7586_pipe_enable is local to the source
and does not need to be in global scope, so make it static.
Cleans up sparse warning:
symbol 'st7586_pipe_enable' was not declared. Should it be static?
Signed-off-by: Colin Ian King <colin.king@canonical.com>
Acked-By: David Lechner <david@lechnology.com>
[noralf: fixed: Alignment should match open parenthesis]
Signed-off-by: Noralf Trønnes <noralf@tronnes.org>
Link: https://patchwork.freedesktop.org/patch/msgid/20170816092306.10969-1-colin.king@canonical.com
-rw-r--r-- | drivers/gpu/drm/tinydrm/st7586.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/gpu/drm/tinydrm/st7586.c b/drivers/gpu/drm/tinydrm/st7586.c index 1b39d3fb17f7..b439956a07f4 100644 --- a/drivers/gpu/drm/tinydrm/st7586.c +++ b/drivers/gpu/drm/tinydrm/st7586.c @@ -172,8 +172,8 @@ static const struct drm_framebuffer_funcs st7586_fb_funcs = { .dirty = st7586_fb_dirty, }; -void st7586_pipe_enable(struct drm_simple_display_pipe *pipe, - struct drm_crtc_state *crtc_state) +static void st7586_pipe_enable(struct drm_simple_display_pipe *pipe, + struct drm_crtc_state *crtc_state) { struct tinydrm_device *tdev = pipe_to_tinydrm(pipe); struct mipi_dbi *mipi = mipi_dbi_from_tinydrm(tdev); |