diff options
Diffstat (limited to 'drivers/video/tmiofb.c')
-rw-r--r-- | drivers/video/tmiofb.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/video/tmiofb.c b/drivers/video/tmiofb.c index b244f060f151..dc4fb8620156 100644 --- a/drivers/video/tmiofb.c +++ b/drivers/video/tmiofb.c | |||
@@ -191,7 +191,7 @@ | |||
191 | #define LCR_VCLKHW 0x1b4 /* VCLK High Width */ | 191 | #define LCR_VCLKHW 0x1b4 /* VCLK High Width */ |
192 | #define LCR_OC 0x1b6 /* Output Control */ | 192 | #define LCR_OC 0x1b6 /* Output Control */ |
193 | 193 | ||
194 | static char *mode_option __devinitdata; | 194 | static char *mode_option; |
195 | 195 | ||
196 | struct tmiofb_par { | 196 | struct tmiofb_par { |
197 | u32 pseudo_palette[16]; | 197 | u32 pseudo_palette[16]; |
@@ -675,7 +675,7 @@ static struct fb_ops tmiofb_ops = { | |||
675 | 675 | ||
676 | /*--------------------------------------------------------------------------*/ | 676 | /*--------------------------------------------------------------------------*/ |
677 | 677 | ||
678 | static int __devinit tmiofb_probe(struct platform_device *dev) | 678 | static int tmiofb_probe(struct platform_device *dev) |
679 | { | 679 | { |
680 | const struct mfd_cell *cell = mfd_get_cell(dev); | 680 | const struct mfd_cell *cell = mfd_get_cell(dev); |
681 | struct tmio_fb_data *data = dev->dev.platform_data; | 681 | struct tmio_fb_data *data = dev->dev.platform_data; |
@@ -807,7 +807,7 @@ err_ioremap_ccr: | |||
807 | return retval; | 807 | return retval; |
808 | } | 808 | } |
809 | 809 | ||
810 | static int __devexit tmiofb_remove(struct platform_device *dev) | 810 | static int tmiofb_remove(struct platform_device *dev) |
811 | { | 811 | { |
812 | const struct mfd_cell *cell = mfd_get_cell(dev); | 812 | const struct mfd_cell *cell = mfd_get_cell(dev); |
813 | struct fb_info *info = platform_get_drvdata(dev); | 813 | struct fb_info *info = platform_get_drvdata(dev); |
@@ -1002,7 +1002,7 @@ static struct platform_driver tmiofb_driver = { | |||
1002 | .driver.name = "tmio-fb", | 1002 | .driver.name = "tmio-fb", |
1003 | .driver.owner = THIS_MODULE, | 1003 | .driver.owner = THIS_MODULE, |
1004 | .probe = tmiofb_probe, | 1004 | .probe = tmiofb_probe, |
1005 | .remove = __devexit_p(tmiofb_remove), | 1005 | .remove = tmiofb_remove, |
1006 | .suspend = tmiofb_suspend, | 1006 | .suspend = tmiofb_suspend, |
1007 | .resume = tmiofb_resume, | 1007 | .resume = tmiofb_resume, |
1008 | }; | 1008 | }; |