staging: drm/imx: remove use of __devexit_p
authorBill Pemberton <wfp5p@virginia.edu>
Mon, 19 Nov 2012 18:20:51 +0000 (13:20 -0500)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 21 Nov 2012 23:04:59 +0000 (15:04 -0800)
CONFIG_HOTPLUG is going away as an option so __devexit_p 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/imx-drm-core.c
drivers/staging/imx-drm/ipu-v3/ipu-common.c
drivers/staging/imx-drm/ipuv3-crtc.c
drivers/staging/imx-drm/parallel-display.c

index 1913199ba16e4593668f69bf93d4593ccd127ecd..ecf0f44bc70e1daf8dc4133d5d1a56e251560e8e 100644 (file)
@@ -824,7 +824,7 @@ static int imx_drm_platform_remove(struct platform_device *pdev)
 
 static struct platform_driver imx_drm_pdrv = {
        .probe          = imx_drm_platform_probe,
-       .remove         = __devexit_p(imx_drm_platform_remove),
+       .remove         = imx_drm_platform_remove,
        .driver         = {
                .owner  = THIS_MODULE,
                .name   = "imx-drm",
index cd05718b7044bb33e2cd0ae5c52316d44455a362..937c0b61b318ac31b84f6a80d1ab235899fbcf80 100644 (file)
@@ -1158,7 +1158,7 @@ static struct platform_driver imx_ipu_driver = {
                .of_match_table = imx_ipu_dt_ids,
        },
        .probe = ipu_probe,
-       .remove = __devexit_p(ipu_remove),
+       .remove = ipu_remove,
 };
 
 module_platform_driver(imx_ipu_driver);
index 7e85c5972ae8f7303ff0a5fba9c121356c650d5f..33c82fb961e93a9aac47ab2e158fd4dec1137a7a 100644 (file)
@@ -570,7 +570,7 @@ static struct platform_driver ipu_drm_driver = {
                .name = "imx-ipuv3-crtc",
        },
        .probe = ipu_drm_probe,
-       .remove = __devexit_p(ipu_drm_remove),
+       .remove = ipu_drm_remove,
 };
 module_platform_driver(ipu_drm_driver);
 
index 324283c95530deb2df90c1db69b00f0d61bb15f7..ba53778e2f0c91666d2ad451b39a59f6ca58430d 100644 (file)
@@ -256,7 +256,7 @@ static const struct of_device_id imx_pd_dt_ids[] = {
 
 static struct platform_driver imx_pd_driver = {
        .probe          = imx_pd_probe,
-       .remove         = __devexit_p(imx_pd_remove),
+       .remove         = imx_pd_remove,
        .driver         = {
                .of_match_table = imx_pd_dt_ids,
                .name   = "imx-parallel-display",