staging: imx-drm: remove use of __devinit
authorBill Pemberton <wfp5p@virginia.edu>
Mon, 19 Nov 2012 18:22:11 +0000 (13:22 -0500)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 21 Nov 2012 23:05:02 +0000 (15:05 -0800)
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>
drivers/staging/imx-drm/ipu-v3/ipu-common.c
drivers/staging/imx-drm/ipuv3-crtc.c
drivers/staging/imx-drm/parallel-display.c

index 937c0b61b318ac31b84f6a80d1ab235899fbcf80..b1fcf022570543d006ed66f848c6439cc40321cd 100644 (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);
index 33c82fb961e93a9aac47ab2e158fd4dec1137a7a..46f137f1c2c0033a61c8a7e7b437cd8a8ee71716 100644 (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;
index ba53778e2f0c91666d2ad451b39a59f6ca58430d..9b9f0fe4f5ca44569fb3b0105637be3a23328830 100644 (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;
This page took 0.026365 seconds and 5 git commands to generate.