diff options
| author | Adrian Bunk <bunk@kernel.org> | 2008-07-25 22:46:26 -0400 |
|---|---|---|
| committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-07-26 15:00:12 -0400 |
| commit | 3d1e412ac5570a669e1b1fc5fd0f6859250c3d76 (patch) | |
| tree | 9991d33f7aba9b375c3d7ff857b2ede406184de4 | |
| parent | 511e7483abe1ab433d8ab7a7998f799042b52941 (diff) | |
video/console/stico{n,re}.c: make code static
This patch makes the following needlessly global code static:
- sticon.c: sticonsole_init()
- sticore.c: struct default_sti
- sticore.c: sti_init_graph()
- sticore.c: sti_inq_conf()
- sticore.c: sti_rom_copy()
- sticore.c: sti_select_fbfont()
- sticore.c: sti_select_font()
- sticore.c: sti_get_wmode_rom()
- sticore.c: sti_read_rom()
[akpm@linux-foundation.org: coding-style fixes]
Signed-off-by: Adrian Bunk <bunk@kernel.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
| -rw-r--r-- | drivers/video/console/sticon.c | 2 | ||||
| -rw-r--r-- | drivers/video/console/sticore.c | 33 | ||||
| -rw-r--r-- | drivers/video/sticore.h | 2 |
3 files changed, 16 insertions, 21 deletions
diff --git a/drivers/video/console/sticon.c b/drivers/video/console/sticon.c index a11cc2fdd4cd..4055dbdd1b42 100644 --- a/drivers/video/console/sticon.c +++ b/drivers/video/console/sticon.c | |||
| @@ -370,7 +370,7 @@ static const struct consw sti_con = { | |||
| 370 | 370 | ||
| 371 | 371 | ||
| 372 | 372 | ||
| 373 | int __init sticonsole_init(void) | 373 | static int __init sticonsole_init(void) |
| 374 | { | 374 | { |
| 375 | /* already initialized ? */ | 375 | /* already initialized ? */ |
| 376 | if (sticon_sti) | 376 | if (sticon_sti) |
diff --git a/drivers/video/console/sticore.c b/drivers/video/console/sticore.c index e9ab657f0bb7..d7822af0e00a 100644 --- a/drivers/video/console/sticore.c +++ b/drivers/video/console/sticore.c | |||
| @@ -29,7 +29,7 @@ | |||
| 29 | 29 | ||
| 30 | #define STI_DRIVERVERSION "Version 0.9a" | 30 | #define STI_DRIVERVERSION "Version 0.9a" |
| 31 | 31 | ||
| 32 | struct sti_struct *default_sti __read_mostly; | 32 | static struct sti_struct *default_sti __read_mostly; |
| 33 | 33 | ||
| 34 | /* number of STI ROMS found and their ptrs to each struct */ | 34 | /* number of STI ROMS found and their ptrs to each struct */ |
| 35 | static int num_sti_roms __read_mostly; | 35 | static int num_sti_roms __read_mostly; |
| @@ -68,8 +68,7 @@ static const struct sti_init_flags default_init_flags = { | |||
| 68 | .init_cmap_tx = 1, | 68 | .init_cmap_tx = 1, |
| 69 | }; | 69 | }; |
| 70 | 70 | ||
| 71 | int | 71 | static int sti_init_graph(struct sti_struct *sti) |
| 72 | sti_init_graph(struct sti_struct *sti) | ||
| 73 | { | 72 | { |
| 74 | struct sti_init_inptr_ext inptr_ext = { 0, }; | 73 | struct sti_init_inptr_ext inptr_ext = { 0, }; |
| 75 | struct sti_init_inptr inptr = { | 74 | struct sti_init_inptr inptr = { |
| @@ -100,8 +99,7 @@ static const struct sti_conf_flags default_conf_flags = { | |||
| 100 | .wait = STI_WAIT, | 99 | .wait = STI_WAIT, |
| 101 | }; | 100 | }; |
| 102 | 101 | ||
| 103 | void | 102 | static void sti_inq_conf(struct sti_struct *sti) |
| 104 | sti_inq_conf(struct sti_struct *sti) | ||
| 105 | { | 103 | { |
| 106 | struct sti_conf_inptr inptr = { 0, }; | 104 | struct sti_conf_inptr inptr = { 0, }; |
| 107 | unsigned long flags; | 105 | unsigned long flags; |
| @@ -237,8 +235,8 @@ static void sti_flush(unsigned long start, unsigned long end) | |||
| 237 | flush_icache_range(start, end); | 235 | flush_icache_range(start, end); |
| 238 | } | 236 | } |
| 239 | 237 | ||
| 240 | void __devinit | 238 | static void __devinit sti_rom_copy(unsigned long base, unsigned long count, |
| 241 | sti_rom_copy(unsigned long base, unsigned long count, void *dest) | 239 | void *dest) |
| 242 | { | 240 | { |
| 243 | unsigned long dest_start = (unsigned long) dest; | 241 | unsigned long dest_start = (unsigned long) dest; |
| 244 | 242 | ||
| @@ -478,8 +476,8 @@ sti_init_glob_cfg(struct sti_struct *sti, | |||
| 478 | } | 476 | } |
| 479 | 477 | ||
| 480 | #ifdef CONFIG_FB | 478 | #ifdef CONFIG_FB |
| 481 | struct sti_cooked_font * __devinit | 479 | static struct sti_cooked_font __devinit |
| 482 | sti_select_fbfont(struct sti_cooked_rom *cooked_rom, const char *fbfont_name) | 480 | *sti_select_fbfont(struct sti_cooked_rom *cooked_rom, const char *fbfont_name) |
| 483 | { | 481 | { |
| 484 | const struct font_desc *fbfont; | 482 | const struct font_desc *fbfont; |
| 485 | unsigned int size, bpc; | 483 | unsigned int size, bpc; |
| @@ -534,16 +532,16 @@ sti_select_fbfont(struct sti_cooked_rom *cooked_rom, const char *fbfont_name) | |||
| 534 | return cooked_font; | 532 | return cooked_font; |
| 535 | } | 533 | } |
| 536 | #else | 534 | #else |
| 537 | struct sti_cooked_font * __devinit | 535 | static struct sti_cooked_font __devinit |
| 538 | sti_select_fbfont(struct sti_cooked_rom *cooked_rom, const char *fbfont_name) | 536 | *sti_select_fbfont(struct sti_cooked_rom *cooked_rom, const char *fbfont_name) |
| 539 | { | 537 | { |
| 540 | return NULL; | 538 | return NULL; |
| 541 | } | 539 | } |
| 542 | #endif | 540 | #endif |
| 543 | 541 | ||
| 544 | struct sti_cooked_font * __devinit | 542 | static struct sti_cooked_font __devinit |
| 545 | sti_select_font(struct sti_cooked_rom *rom, | 543 | *sti_select_font(struct sti_cooked_rom *rom, |
| 546 | int (*search_font_fnc) (struct sti_cooked_rom *,int,int) ) | 544 | int (*search_font_fnc)(struct sti_cooked_rom *, int, int)) |
| 547 | { | 545 | { |
| 548 | struct sti_cooked_font *font; | 546 | struct sti_cooked_font *font; |
| 549 | int i; | 547 | int i; |
| @@ -707,8 +705,7 @@ sti_get_bmode_rom (unsigned long address) | |||
| 707 | return raw; | 705 | return raw; |
| 708 | } | 706 | } |
| 709 | 707 | ||
| 710 | struct sti_rom * __devinit | 708 | static struct sti_rom __devinit *sti_get_wmode_rom(unsigned long address) |
| 711 | sti_get_wmode_rom (unsigned long address) | ||
| 712 | { | 709 | { |
| 713 | struct sti_rom *raw; | 710 | struct sti_rom *raw; |
| 714 | unsigned long size; | 711 | unsigned long size; |
| @@ -723,8 +720,8 @@ sti_get_wmode_rom (unsigned long address) | |||
| 723 | return raw; | 720 | return raw; |
| 724 | } | 721 | } |
| 725 | 722 | ||
| 726 | int __devinit | 723 | static int __devinit sti_read_rom(int wordmode, struct sti_struct *sti, |
| 727 | sti_read_rom(int wordmode, struct sti_struct *sti, unsigned long address) | 724 | unsigned long address) |
| 728 | { | 725 | { |
| 729 | struct sti_cooked_rom *cooked; | 726 | struct sti_cooked_rom *cooked; |
| 730 | struct sti_rom *raw = NULL; | 727 | struct sti_rom *raw = NULL; |
diff --git a/drivers/video/sticore.h b/drivers/video/sticore.h index 1a9a60c74be3..7fe5be4bc70e 100644 --- a/drivers/video/sticore.h +++ b/drivers/video/sticore.h | |||
| @@ -352,8 +352,6 @@ struct sti_struct *sti_get_rom(unsigned int index); /* 0: default sti */ | |||
| 352 | 352 | ||
| 353 | /* functions to call the STI ROM directly */ | 353 | /* functions to call the STI ROM directly */ |
| 354 | 354 | ||
| 355 | int sti_init_graph(struct sti_struct *sti); | ||
| 356 | void sti_inq_conf(struct sti_struct *sti); | ||
| 357 | void sti_putc(struct sti_struct *sti, int c, int y, int x); | 355 | void sti_putc(struct sti_struct *sti, int c, int y, int x); |
| 358 | void sti_set(struct sti_struct *sti, int src_y, int src_x, | 356 | void sti_set(struct sti_struct *sti, int src_y, int src_x, |
| 359 | int height, int width, u8 color); | 357 | int height, int width, u8 color); |
