aboutsummaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
Diffstat (limited to 'drivers')
-rw-r--r--drivers/video/da8xx-fb.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/video/da8xx-fb.c b/drivers/video/da8xx-fb.c
index 8b7d47386f39..fcdac872522d 100644
--- a/drivers/video/da8xx-fb.c
+++ b/drivers/video/da8xx-fb.c
@@ -899,7 +899,7 @@ static struct fb_ops da8xx_fb_ops = {
899 .fb_blank = cfb_blank, 899 .fb_blank = cfb_blank,
900}; 900};
901 901
902static int __init fb_probe(struct platform_device *device) 902static int __devinit fb_probe(struct platform_device *device)
903{ 903{
904 struct da8xx_lcdc_platform_data *fb_pdata = 904 struct da8xx_lcdc_platform_data *fb_pdata =
905 device->dev.platform_data; 905 device->dev.platform_data;
@@ -1165,7 +1165,7 @@ static int fb_resume(struct platform_device *dev)
1165 1165
1166static struct platform_driver da8xx_fb_driver = { 1166static struct platform_driver da8xx_fb_driver = {
1167 .probe = fb_probe, 1167 .probe = fb_probe,
1168 .remove = fb_remove, 1168 .remove = __devexit_p(fb_remove),
1169 .suspend = fb_suspend, 1169 .suspend = fb_suspend,
1170 .resume = fb_resume, 1170 .resume = fb_resume,
1171 .driver = { 1171 .driver = {