staging: imx-drm: remove use of __devexit
authorBill Pemberton <wfp5p@virginia.edu>
Mon, 19 Nov 2012 18:26:38 +0000 (13:26 -0500)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 21 Nov 2012 23:05:02 +0000 (15:05 -0800)
CONFIG_HOTPLUG is going away as an option so __devexit is no
longer needed.

Signed-off-by: Bill Pemberton <wfp5p@virginia.edu>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/imx-drm/ipu-v3/ipu-common.c
drivers/staging/imx-drm/ipuv3-crtc.c
drivers/staging/imx-drm/parallel-display.c

index b1fcf02..677e665 100644 (file)
@@ -1136,7 +1136,7 @@ failed_ioremap:
        return ret;
 }
 
-static int __devexit ipu_remove(struct platform_device *pdev)
+static int ipu_remove(struct platform_device *pdev)
 {
        struct ipu_soc *ipu = platform_get_drvdata(pdev);
        struct resource *res;
index 46f137f..1892006 100644 (file)
@@ -554,7 +554,7 @@ static int ipu_drm_probe(struct platform_device *pdev)
        return 0;
 }
 
-static int __devexit ipu_drm_remove(struct platform_device *pdev)
+static int ipu_drm_remove(struct platform_device *pdev)
 {
        struct ipu_crtc *ipu_crtc = platform_get_drvdata(pdev);
 
index 9b9f0fe..a8064fc 100644 (file)
@@ -235,7 +235,7 @@ static int imx_pd_probe(struct platform_device *pdev)
        return 0;
 }
 
-static int __devexit imx_pd_remove(struct platform_device *pdev)
+static int imx_pd_remove(struct platform_device *pdev)
 {
        struct imx_parallel_display *imxpd = platform_get_drvdata(pdev);
        struct drm_connector *connector = &imxpd->connector;