diff options
Diffstat (limited to 'drivers/video/w100fb.c')
-rw-r--r-- | drivers/video/w100fb.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/drivers/video/w100fb.c b/drivers/video/w100fb.c index 31b0e17ed090..e66b8b19ce5d 100644 --- a/drivers/video/w100fb.c +++ b/drivers/video/w100fb.c | |||
@@ -53,7 +53,7 @@ static void w100_update_enable(void); | |||
53 | static void w100_update_disable(void); | 53 | static void w100_update_disable(void); |
54 | static void calc_hsync(struct w100fb_par *par); | 54 | static void calc_hsync(struct w100fb_par *par); |
55 | static void w100_init_graphic_engine(struct w100fb_par *par); | 55 | static void w100_init_graphic_engine(struct w100fb_par *par); |
56 | struct w100_pll_info *w100_get_xtal_table(unsigned int freq); | 56 | struct w100_pll_info *w100_get_xtal_table(unsigned int freq) __devinit; |
57 | 57 | ||
58 | /* Pseudo palette size */ | 58 | /* Pseudo palette size */ |
59 | #define MAX_PALETTES 16 | 59 | #define MAX_PALETTES 16 |
@@ -782,7 +782,7 @@ out: | |||
782 | } | 782 | } |
783 | 783 | ||
784 | 784 | ||
785 | static int w100fb_remove(struct platform_device *pdev) | 785 | static int __devexit w100fb_remove(struct platform_device *pdev) |
786 | { | 786 | { |
787 | struct fb_info *info = platform_get_drvdata(pdev); | 787 | struct fb_info *info = platform_get_drvdata(pdev); |
788 | struct w100fb_par *par=info->par; | 788 | struct w100fb_par *par=info->par; |
@@ -1020,7 +1020,7 @@ static struct pll_entries { | |||
1020 | { 0 }, | 1020 | { 0 }, |
1021 | }; | 1021 | }; |
1022 | 1022 | ||
1023 | struct w100_pll_info *w100_get_xtal_table(unsigned int freq) | 1023 | struct w100_pll_info __devinit *w100_get_xtal_table(unsigned int freq) |
1024 | { | 1024 | { |
1025 | struct pll_entries *pll_entry = w100_pll_tables; | 1025 | struct pll_entries *pll_entry = w100_pll_tables; |
1026 | 1026 | ||
@@ -1611,7 +1611,7 @@ static void w100_vsync(void) | |||
1611 | 1611 | ||
1612 | static struct platform_driver w100fb_driver = { | 1612 | static struct platform_driver w100fb_driver = { |
1613 | .probe = w100fb_probe, | 1613 | .probe = w100fb_probe, |
1614 | .remove = w100fb_remove, | 1614 | .remove = __devexit_p(w100fb_remove), |
1615 | .suspend = w100fb_suspend, | 1615 | .suspend = w100fb_suspend, |
1616 | .resume = w100fb_resume, | 1616 | .resume = w100fb_resume, |
1617 | .driver = { | 1617 | .driver = { |
@@ -1619,7 +1619,7 @@ static struct platform_driver w100fb_driver = { | |||
1619 | }, | 1619 | }, |
1620 | }; | 1620 | }; |
1621 | 1621 | ||
1622 | int __devinit w100fb_init(void) | 1622 | int __init w100fb_init(void) |
1623 | { | 1623 | { |
1624 | return platform_driver_register(&w100fb_driver); | 1624 | return platform_driver_register(&w100fb_driver); |
1625 | } | 1625 | } |