staging: imx-drm: remove use of __devinit

CONFIG_HOTPLUG is going away as an option so __devinit 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:
Bill Pemberton 2012-11-19 13:22:11 -05:00 committed by Greg Kroah-Hartman
parent 349affa1ce
commit c4aabf8d32
3 changed files with 3 additions and 3 deletions

View File

@ -1013,7 +1013,7 @@ static void ipu_irq_exit(struct ipu_soc *ipu)
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 =
of_match_device(imx_ipu_dt_ids, &pdev->dev);

View File

@ -530,7 +530,7 @@ err_put_resources:
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_crtc *ipu_crtc;

View File

@ -189,7 +189,7 @@ static int imx_pd_register(struct imx_parallel_display *imxpd)
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;
const u8 *edidp;