From: Adrian Bunk This patch makes three needlessly global functions static. Signed-off-by: Adrian Bunk Signed-off-by: Antonino Daplas Signed-off-by: Andrew Morton --- drivers/video/console/fbcon_ccw.c | 2 +- drivers/video/console/fbcon_cw.c | 2 +- drivers/video/console/fbcon_ud.c | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff -puN drivers/video/console/fbcon_ccw.c~fbcon-make-3-functions-static drivers/video/console/fbcon_ccw.c --- a/drivers/video/console/fbcon_ccw.c~fbcon-make-3-functions-static +++ a/drivers/video/console/fbcon_ccw.c @@ -391,7 +391,7 @@ static void ccw_cursor(struct vc_data *v ops->cursor_reset = 0; } -int ccw_update_start(struct fb_info *info) +static int ccw_update_start(struct fb_info *info) { struct fbcon_ops *ops = info->fbcon_par; u32 yoffset; diff -puN drivers/video/console/fbcon_cw.c~fbcon-make-3-functions-static drivers/video/console/fbcon_cw.c --- a/drivers/video/console/fbcon_cw.c~fbcon-make-3-functions-static +++ a/drivers/video/console/fbcon_cw.c @@ -375,7 +375,7 @@ static void cw_cursor(struct vc_data *vc ops->cursor_reset = 0; } -int cw_update_start(struct fb_info *info) +static int cw_update_start(struct fb_info *info) { struct fbcon_ops *ops = info->fbcon_par; u32 vxres = GETVXRES(ops->p->scrollmode, info); diff -puN drivers/video/console/fbcon_ud.c~fbcon-make-3-functions-static drivers/video/console/fbcon_ud.c --- a/drivers/video/console/fbcon_ud.c~fbcon-make-3-functions-static +++ a/drivers/video/console/fbcon_ud.c @@ -415,7 +415,7 @@ static void ud_cursor(struct vc_data *vc ops->cursor_reset = 0; } -int ud_update_start(struct fb_info *info) +static int ud_update_start(struct fb_info *info) { struct fbcon_ops *ops = info->fbcon_par; int xoffset, yoffset; _