diff options
Diffstat (limited to 'drivers/video/bf54x-lq043fb.c')
-rw-r--r-- | drivers/video/bf54x-lq043fb.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/video/bf54x-lq043fb.c b/drivers/video/bf54x-lq043fb.c index ff5663f5c64f..2726a5b66741 100644 --- a/drivers/video/bf54x-lq043fb.c +++ b/drivers/video/bf54x-lq043fb.c | |||
@@ -497,7 +497,7 @@ static irqreturn_t bfin_bf54x_irq_error(int irq, void *dev_id) | |||
497 | return IRQ_HANDLED; | 497 | return IRQ_HANDLED; |
498 | } | 498 | } |
499 | 499 | ||
500 | static int __devinit bfin_bf54x_probe(struct platform_device *pdev) | 500 | static int bfin_bf54x_probe(struct platform_device *pdev) |
501 | { | 501 | { |
502 | #ifndef NO_BL_SUPPORT | 502 | #ifndef NO_BL_SUPPORT |
503 | struct backlight_properties props; | 503 | struct backlight_properties props; |
@@ -686,7 +686,7 @@ out1: | |||
686 | return ret; | 686 | return ret; |
687 | } | 687 | } |
688 | 688 | ||
689 | static int __devexit bfin_bf54x_remove(struct platform_device *pdev) | 689 | static int bfin_bf54x_remove(struct platform_device *pdev) |
690 | { | 690 | { |
691 | 691 | ||
692 | struct fb_info *fbinfo = platform_get_drvdata(pdev); | 692 | struct fb_info *fbinfo = platform_get_drvdata(pdev); |
@@ -754,7 +754,7 @@ static int bfin_bf54x_resume(struct platform_device *pdev) | |||
754 | 754 | ||
755 | static struct platform_driver bfin_bf54x_driver = { | 755 | static struct platform_driver bfin_bf54x_driver = { |
756 | .probe = bfin_bf54x_probe, | 756 | .probe = bfin_bf54x_probe, |
757 | .remove = __devexit_p(bfin_bf54x_remove), | 757 | .remove = bfin_bf54x_remove, |
758 | .suspend = bfin_bf54x_suspend, | 758 | .suspend = bfin_bf54x_suspend, |
759 | .resume = bfin_bf54x_resume, | 759 | .resume = bfin_bf54x_resume, |
760 | .driver = { | 760 | .driver = { |