Commit 99c28f10 authored by Bill Pemberton's avatar Bill Pemberton Committed by Greg Kroah-Hartman

staging: drm/imx: remove use of __devexit_p

CONFIG_HOTPLUG is going away as an option so __devexit_p is no longer
needed.
Signed-off-by: default avatarBill Pemberton <wfp5p@virginia.edu>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 417696cf
...@@ -824,7 +824,7 @@ static int imx_drm_platform_remove(struct platform_device *pdev) ...@@ -824,7 +824,7 @@ static int imx_drm_platform_remove(struct platform_device *pdev)
static struct platform_driver imx_drm_pdrv = { static struct platform_driver imx_drm_pdrv = {
.probe = imx_drm_platform_probe, .probe = imx_drm_platform_probe,
.remove = __devexit_p(imx_drm_platform_remove), .remove = imx_drm_platform_remove,
.driver = { .driver = {
.owner = THIS_MODULE, .owner = THIS_MODULE,
.name = "imx-drm", .name = "imx-drm",
......
...@@ -1158,7 +1158,7 @@ static struct platform_driver imx_ipu_driver = { ...@@ -1158,7 +1158,7 @@ static struct platform_driver imx_ipu_driver = {
.of_match_table = imx_ipu_dt_ids, .of_match_table = imx_ipu_dt_ids,
}, },
.probe = ipu_probe, .probe = ipu_probe,
.remove = __devexit_p(ipu_remove), .remove = ipu_remove,
}; };
module_platform_driver(imx_ipu_driver); module_platform_driver(imx_ipu_driver);
......
...@@ -570,7 +570,7 @@ static struct platform_driver ipu_drm_driver = { ...@@ -570,7 +570,7 @@ static struct platform_driver ipu_drm_driver = {
.name = "imx-ipuv3-crtc", .name = "imx-ipuv3-crtc",
}, },
.probe = ipu_drm_probe, .probe = ipu_drm_probe,
.remove = __devexit_p(ipu_drm_remove), .remove = ipu_drm_remove,
}; };
module_platform_driver(ipu_drm_driver); module_platform_driver(ipu_drm_driver);
......
...@@ -256,7 +256,7 @@ static const struct of_device_id imx_pd_dt_ids[] = { ...@@ -256,7 +256,7 @@ static const struct of_device_id imx_pd_dt_ids[] = {
static struct platform_driver imx_pd_driver = { static struct platform_driver imx_pd_driver = {
.probe = imx_pd_probe, .probe = imx_pd_probe,
.remove = __devexit_p(imx_pd_remove), .remove = imx_pd_remove,
.driver = { .driver = {
.of_match_table = imx_pd_dt_ids, .of_match_table = imx_pd_dt_ids,
.name = "imx-parallel-display", .name = "imx-parallel-display",
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment