drm/pl111: make structure pl111_display_funcs static
authorColin Ian King <[email protected]>
Fri, 19 May 2017 11:02:03 +0000 (12:02 +0100)
committerEric Anholt <[email protected]>
Fri, 19 May 2017 18:12:38 +0000 (11:12 -0700)
structure pl111_display_funcs can be made static as it does not need to be
in global scope.  Fixes sparse warning:

"warning: symbol 'pl111_display_funcs' was not declared. Should it
be static?"

Signed-off-by: Colin Ian King <[email protected]>
Reviewed-by: Eric Anholt <[email protected]>
Link: http://patchwork.freedesktop.org/patch/msgid/[email protected]
drivers/gpu/drm/pl111/pl111_display.c

index fbf8fbec6c16b0abc27b7f65e547143445ba6e7f..3e0a4fa73ddbc30f85663cecda96a63d706e5615 100644 (file)
@@ -288,7 +288,7 @@ static int pl111_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 pl111_display_funcs = {
+static const struct drm_simple_display_pipe_funcs pl111_display_funcs = {
        .check = pl111_display_check,
        .enable = pl111_display_enable,
        .disable = pl111_display_disable,