diff options
author | Adrian Bunk <bunk@stusta.de> | 2006-10-03 04:15:05 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-10-03 11:04:12 -0400 |
commit | 48afdf6eb750b6836932e4d492b90448bc68dfc0 (patch) | |
tree | bc57adfe5d91458e5c210aa6b6b2cb07ba65c104 /drivers/video | |
parent | 5c60b118d62c14ad7586ed6a6e537c3294c90227 (diff) |
[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')
-rw-r--r-- | drivers/video/console/fbcon_ccw.c | 2 | ||||
-rw-r--r-- | drivers/video/console/fbcon_cw.c | 2 | ||||
-rw-r--r-- | drivers/video/console/fbcon_ud.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/drivers/video/console/fbcon_ccw.c b/drivers/video/console/fbcon_ccw.c index 4481c80b8b2a..825e6d6972a7 100644 --- a/drivers/video/console/fbcon_ccw.c +++ b/drivers/video/console/fbcon_ccw.c | |||
@@ -391,7 +391,7 @@ static void ccw_cursor(struct vc_data *vc, struct fb_info *info, int mode, | |||
391 | ops->cursor_reset = 0; | 391 | ops->cursor_reset = 0; |
392 | } | 392 | } |
393 | 393 | ||
394 | int ccw_update_start(struct fb_info *info) | 394 | static int ccw_update_start(struct fb_info *info) |
395 | { | 395 | { |
396 | struct fbcon_ops *ops = info->fbcon_par; | 396 | struct fbcon_ops *ops = info->fbcon_par; |
397 | u32 yoffset; | 397 | u32 yoffset; |
diff --git a/drivers/video/console/fbcon_cw.c b/drivers/video/console/fbcon_cw.c index 7f92c06afea7..c637e6318803 100644 --- a/drivers/video/console/fbcon_cw.c +++ b/drivers/video/console/fbcon_cw.c | |||
@@ -375,7 +375,7 @@ static void cw_cursor(struct vc_data *vc, struct fb_info *info, int mode, | |||
375 | ops->cursor_reset = 0; | 375 | ops->cursor_reset = 0; |
376 | } | 376 | } |
377 | 377 | ||
378 | int cw_update_start(struct fb_info *info) | 378 | static int cw_update_start(struct fb_info *info) |
379 | { | 379 | { |
380 | struct fbcon_ops *ops = info->fbcon_par; | 380 | struct fbcon_ops *ops = info->fbcon_par; |
381 | u32 vxres = GETVXRES(ops->p->scrollmode, info); | 381 | u32 vxres = GETVXRES(ops->p->scrollmode, info); |
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, | |||
415 | ops->cursor_reset = 0; | 415 | ops->cursor_reset = 0; |
416 | } | 416 | } |
417 | 417 | ||
418 | int ud_update_start(struct fb_info *info) | 418 | static int ud_update_start(struct fb_info *info) |
419 | { | 419 | { |
420 | struct fbcon_ops *ops = info->fbcon_par; | 420 | struct fbcon_ops *ops = info->fbcon_par; |
421 | int xoffset, yoffset; | 421 | int xoffset, yoffset; |