diff options
author | Andrew Morton <akpm@linux-foundation.org> | 2010-08-10 21:02:47 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2010-08-11 11:59:12 -0400 |
commit | 628a464e5bffd0e9aedaee2a85296be17aa19d90 (patch) | |
tree | 2a48af6c73526b73cd4ed9cf02bde78110e1dc2c /drivers/video | |
parent | 527dcf4c5029b8dc791eb96fad01a12bb06e7850 (diff) |
drivers/video/igafb.c: make igafb_setup() and igafb_init() static
Cc: Kulikov Vasiliy <segooon@gmail.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/video')
-rw-r--r-- | drivers/video/igafb.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/video/igafb.c b/drivers/video/igafb.c index c4e6fc0301d4..d885c770eb84 100644 --- a/drivers/video/igafb.c +++ b/drivers/video/igafb.c | |||
@@ -368,7 +368,7 @@ static int __init iga_init(struct fb_info *info, struct iga_par *par) | |||
368 | return 1; | 368 | return 1; |
369 | } | 369 | } |
370 | 370 | ||
371 | int __init igafb_init(void) | 371 | static int __init igafb_init(void) |
372 | { | 372 | { |
373 | struct fb_info *info; | 373 | struct fb_info *info; |
374 | struct pci_dev *pdev; | 374 | struct pci_dev *pdev; |
@@ -557,7 +557,7 @@ int __init igafb_init(void) | |||
557 | return 0; | 557 | return 0; |
558 | } | 558 | } |
559 | 559 | ||
560 | int __init igafb_setup(char *options) | 560 | static int __init igafb_setup(char *options) |
561 | { | 561 | { |
562 | char *this_opt; | 562 | char *this_opt; |
563 | 563 | ||