mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2025-01-25 08:09:39 +07:00
staging: imx-drm: remove use of __devexit
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>
This commit is contained in:
parent
8b1e01264c
commit
8aa1be45f9
@ -1136,7 +1136,7 @@ static int ipu_probe(struct platform_device *pdev)
|
|||||||
return ret;
|
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 ipu_soc *ipu = platform_get_drvdata(pdev);
|
||||||
struct resource *res;
|
struct resource *res;
|
||||||
|
@ -554,7 +554,7 @@ static int ipu_drm_probe(struct platform_device *pdev)
|
|||||||
return 0;
|
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);
|
struct ipu_crtc *ipu_crtc = platform_get_drvdata(pdev);
|
||||||
|
|
||||||
|
@ -235,7 +235,7 @@ static int imx_pd_probe(struct platform_device *pdev)
|
|||||||
return 0;
|
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 imx_parallel_display *imxpd = platform_get_drvdata(pdev);
|
||||||
struct drm_connector *connector = &imxpd->connector;
|
struct drm_connector *connector = &imxpd->connector;
|
||||||
|
Loading…
Reference in New Issue
Block a user