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

staging: imx-drm: remove use of __devinit

CONFIG_HOTPLUG is going away as an option so __devinit is no longer
needed.
Signed-off-by: default avatarBill Pemberton <wfp5p@virginia.edu>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 349affa1
...@@ -1013,7 +1013,7 @@ static void ipu_irq_exit(struct ipu_soc *ipu) ...@@ -1013,7 +1013,7 @@ static void ipu_irq_exit(struct ipu_soc *ipu)
irq_free_descs(ipu->irq_start, IPU_NUM_IRQS); irq_free_descs(ipu->irq_start, IPU_NUM_IRQS);
} }
static int __devinit ipu_probe(struct platform_device *pdev) static int ipu_probe(struct platform_device *pdev)
{ {
const struct of_device_id *of_id = const struct of_device_id *of_id =
of_match_device(imx_ipu_dt_ids, &pdev->dev); of_match_device(imx_ipu_dt_ids, &pdev->dev);
......
...@@ -530,7 +530,7 @@ static int ipu_crtc_init(struct ipu_crtc *ipu_crtc, ...@@ -530,7 +530,7 @@ static int ipu_crtc_init(struct ipu_crtc *ipu_crtc,
return ret; return ret;
} }
static int __devinit ipu_drm_probe(struct platform_device *pdev) static int ipu_drm_probe(struct platform_device *pdev)
{ {
struct ipu_client_platformdata *pdata = pdev->dev.platform_data; struct ipu_client_platformdata *pdata = pdev->dev.platform_data;
struct ipu_crtc *ipu_crtc; struct ipu_crtc *ipu_crtc;
......
...@@ -189,7 +189,7 @@ static int imx_pd_register(struct imx_parallel_display *imxpd) ...@@ -189,7 +189,7 @@ static int imx_pd_register(struct imx_parallel_display *imxpd)
return 0; return 0;
} }
static int __devinit imx_pd_probe(struct platform_device *pdev) static int imx_pd_probe(struct platform_device *pdev)
{ {
struct device_node *np = pdev->dev.of_node; struct device_node *np = pdev->dev.of_node;
const u8 *edidp; const u8 *edidp;
......
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