diff options
Diffstat (limited to 'drivers/video/mxsfb.c')
-rw-r--r-- | drivers/video/mxsfb.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/drivers/video/mxsfb.c b/drivers/video/mxsfb.c index 49619b441500..a45b37c2e88e 100644 --- a/drivers/video/mxsfb.c +++ b/drivers/video/mxsfb.c | |||
@@ -586,7 +586,7 @@ static struct fb_ops mxsfb_ops = { | |||
586 | .fb_imageblit = cfb_imageblit, | 586 | .fb_imageblit = cfb_imageblit, |
587 | }; | 587 | }; |
588 | 588 | ||
589 | static int __devinit mxsfb_restore_mode(struct mxsfb_info *host) | 589 | static int mxsfb_restore_mode(struct mxsfb_info *host) |
590 | { | 590 | { |
591 | struct fb_info *fb_info = &host->fb_info; | 591 | struct fb_info *fb_info = &host->fb_info; |
592 | unsigned line_count; | 592 | unsigned line_count; |
@@ -677,7 +677,7 @@ static int __devinit mxsfb_restore_mode(struct mxsfb_info *host) | |||
677 | return 0; | 677 | return 0; |
678 | } | 678 | } |
679 | 679 | ||
680 | static int __devinit mxsfb_init_fbinfo(struct mxsfb_info *host) | 680 | static int mxsfb_init_fbinfo(struct mxsfb_info *host) |
681 | { | 681 | { |
682 | struct fb_info *fb_info = &host->fb_info; | 682 | struct fb_info *fb_info = &host->fb_info; |
683 | struct fb_var_screeninfo *var = &fb_info->var; | 683 | struct fb_var_screeninfo *var = &fb_info->var; |
@@ -739,7 +739,7 @@ static int __devinit mxsfb_init_fbinfo(struct mxsfb_info *host) | |||
739 | return 0; | 739 | return 0; |
740 | } | 740 | } |
741 | 741 | ||
742 | static void __devexit mxsfb_free_videomem(struct mxsfb_info *host) | 742 | static void mxsfb_free_videomem(struct mxsfb_info *host) |
743 | { | 743 | { |
744 | struct fb_info *fb_info = &host->fb_info; | 744 | struct fb_info *fb_info = &host->fb_info; |
745 | 745 | ||
@@ -772,7 +772,7 @@ static const struct of_device_id mxsfb_dt_ids[] = { | |||
772 | }; | 772 | }; |
773 | MODULE_DEVICE_TABLE(of, mxsfb_dt_ids); | 773 | MODULE_DEVICE_TABLE(of, mxsfb_dt_ids); |
774 | 774 | ||
775 | static int __devinit mxsfb_probe(struct platform_device *pdev) | 775 | static int mxsfb_probe(struct platform_device *pdev) |
776 | { | 776 | { |
777 | const struct of_device_id *of_id = | 777 | const struct of_device_id *of_id = |
778 | of_match_device(mxsfb_dt_ids, &pdev->dev); | 778 | of_match_device(mxsfb_dt_ids, &pdev->dev); |
@@ -912,7 +912,7 @@ error_alloc_info: | |||
912 | return ret; | 912 | return ret; |
913 | } | 913 | } |
914 | 914 | ||
915 | static int __devexit mxsfb_remove(struct platform_device *pdev) | 915 | static int mxsfb_remove(struct platform_device *pdev) |
916 | { | 916 | { |
917 | struct fb_info *fb_info = platform_get_drvdata(pdev); | 917 | struct fb_info *fb_info = platform_get_drvdata(pdev); |
918 | struct mxsfb_info *host = to_imxfb_host(fb_info); | 918 | struct mxsfb_info *host = to_imxfb_host(fb_info); |
@@ -949,7 +949,7 @@ static void mxsfb_shutdown(struct platform_device *pdev) | |||
949 | 949 | ||
950 | static struct platform_driver mxsfb_driver = { | 950 | static struct platform_driver mxsfb_driver = { |
951 | .probe = mxsfb_probe, | 951 | .probe = mxsfb_probe, |
952 | .remove = __devexit_p(mxsfb_remove), | 952 | .remove = mxsfb_remove, |
953 | .shutdown = mxsfb_shutdown, | 953 | .shutdown = mxsfb_shutdown, |
954 | .id_table = mxsfb_devtype, | 954 | .id_table = mxsfb_devtype, |
955 | .driver = { | 955 | .driver = { |