diff options
author | Adrian Bunk <bunk@stusta.de> | 2006-10-03 01:15:05 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-10-03 08:04:12 -0700 |
commit | 48afdf6eb750b6836932e4d492b90448bc68dfc0 (patch) | |
tree | bc57adfe5d91458e5c210aa6b6b2cb07ba65c104 /drivers/video/console/fbcon_ud.c | |
parent | 5c60b118d62c14ad7586ed6a6e537c3294c90227 (diff) | |
download | linux-stable-48afdf6eb750b6836932e4d492b90448bc68dfc0.tar.gz linux-stable-48afdf6eb750b6836932e4d492b90448bc68dfc0.tar.bz2 linux-stable-48afdf6eb750b6836932e4d492b90448bc68dfc0.zip |
[PATCH] fbcon:: make 3 functions static
This patch makes three needlessly global functions static.
Signed-off-by: Adrian Bunk <bunk@stusta.de>
Signed-off-by: Antonino Daplas <adaplas@pol.net>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'drivers/video/console/fbcon_ud.c')
-rw-r--r-- | drivers/video/console/fbcon_ud.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/video/console/fbcon_ud.c b/drivers/video/console/fbcon_ud.c index ab91005e64dc..1473506df5d0 100644 --- a/drivers/video/console/fbcon_ud.c +++ b/drivers/video/console/fbcon_ud.c @@ -415,7 +415,7 @@ static void ud_cursor(struct vc_data *vc, struct fb_info *info, int mode, 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; |