]> git.karo-electronics.de Git - karo-tx-linux.git/blobdiff - arch/arm/mach-omap2/devices.c
Merge tag 'late-omap' of git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc
[karo-tx-linux.git] / arch / arm / mach-omap2 / devices.c
index b6cc233214d75fee1bcf37ab47a68e692cd4b33d..1ec7f05977102759383f05351469baeecbd3e856 100644 (file)
@@ -62,14 +62,13 @@ static int __init omap3_l3_init(void)
        if (!oh)
                pr_err("could not look up %s\n", oh_name);
 
-       pdev = omap_device_build("omap_l3_smx", 0, oh, NULL, 0,
-                                                          NULL, 0, 0);
+       pdev = omap_device_build("omap_l3_smx", 0, oh, NULL, 0);
 
        WARN(IS_ERR(pdev), "could not build omap_device for %s\n", oh_name);
 
        return IS_ERR(pdev) ? PTR_ERR(pdev) : 0;
 }
-postcore_initcall(omap3_l3_init);
+omap_postcore_initcall(omap3_l3_init);
 
 static int __init omap4_l3_init(void)
 {
@@ -97,14 +96,13 @@ static int __init omap4_l3_init(void)
                        pr_err("could not look up %s\n", oh_name);
        }
 
-       pdev = omap_device_build_ss("omap_l3_noc", 0, oh, 3, NULL,
-                                                    0, NULL, 0, 0);
+       pdev = omap_device_build_ss("omap_l3_noc", 0, oh, 3, NULL, 0);
 
        WARN(IS_ERR(pdev), "could not build omap_device for %s\n", oh_name);
 
        return IS_ERR(pdev) ? PTR_ERR(pdev) : 0;
 }
-postcore_initcall(omap4_l3_init);
+omap_postcore_initcall(omap4_l3_init);
 
 #if defined(CONFIG_VIDEO_OMAP2) || defined(CONFIG_VIDEO_OMAP2_MODULE)
 
@@ -317,7 +315,7 @@ int __init omap4_keyboard_init(struct omap4_keypad_platform_data
        keypad_data = sdp4430_keypad_data;
 
        pdev = omap_device_build(name, id, oh, keypad_data,
-                       sizeof(struct omap4_keypad_platform_data), NULL, 0, 0);
+                                sizeof(struct omap4_keypad_platform_data));
 
        if (IS_ERR(pdev)) {
                WARN(1, "Can't build omap_device for %s:%s.\n",
@@ -341,7 +339,7 @@ static inline void __init omap_init_mbox(void)
                return;
        }
 
-       pdev = omap_device_build("omap-mailbox", -1, oh, NULL, 0, NULL, 0, 0);
+       pdev = omap_device_build("omap-mailbox", -1, oh, NULL, 0);
        WARN(IS_ERR(pdev), "%s: could not build device, err %ld\n",
                                                __func__, PTR_ERR(pdev));
 }
@@ -381,7 +379,7 @@ static void __init omap_init_mcpdm(void)
                return;
        }
 
-       pdev = omap_device_build("omap-mcpdm", -1, oh, NULL, 0, NULL, 0, 0);
+       pdev = omap_device_build("omap-mcpdm", -1, oh, NULL, 0);
        WARN(IS_ERR(pdev), "Can't build omap_device for omap-mcpdm.\n");
 }
 #else
@@ -402,7 +400,7 @@ static void __init omap_init_dmic(void)
                return;
        }
 
-       pdev = omap_device_build("omap-dmic", -1, oh, NULL, 0, NULL, 0, 0);
+       pdev = omap_device_build("omap-dmic", -1, oh, NULL, 0);
        WARN(IS_ERR(pdev), "Can't build omap_device for omap-dmic.\n");
 }
 #else
@@ -428,8 +426,7 @@ static void __init omap_init_hdmi_audio(void)
                return;
        }
 
-       pdev = omap_device_build("omap-hdmi-audio-dai",
-               -1, oh, NULL, 0, NULL, 0, 0);
+       pdev = omap_device_build("omap-hdmi-audio-dai", -1, oh, NULL, 0);
        WARN(IS_ERR(pdev),
             "Can't build omap_device for omap-hdmi-audio-dai.\n");
 
@@ -473,8 +470,7 @@ static int __init omap_mcspi_init(struct omap_hwmod *oh, void *unused)
        }
 
        spi_num++;
-       pdev = omap_device_build(name, spi_num, oh, pdata,
-                               sizeof(*pdata), NULL, 0, 0);
+       pdev = omap_device_build(name, spi_num, oh, pdata, sizeof(*pdata));
        WARN(IS_ERR(pdev), "Can't build omap_device for %s:%s\n",
                                name, oh->name);
        kfree(pdata);
@@ -504,7 +500,7 @@ static void omap_init_rng(void)
        if (!oh)
                return;
 
-       pdev = omap_device_build("omap_rng", -1, oh, NULL, 0, NULL, 0, 0);
+       pdev = omap_device_build("omap_rng", -1, oh, NULL, 0);
        WARN(IS_ERR(pdev), "Can't build omap_device for omap_rng\n");
 }
 
@@ -733,8 +729,7 @@ static void __init omap_init_ocp2scp(void)
 
        pdata->dev_cnt  = dev_cnt;
 
-       pdev = omap_device_build(name, bus_id, oh, pdata, sizeof(*pdata), NULL,
-                                                               0, false);
+       pdev = omap_device_build(name, bus_id, oh, pdata, sizeof(*pdata));
        if (IS_ERR(pdev)) {
                pr_err("Could not build omap_device for %s %s\n",
                                                name, oh_name);
@@ -779,4 +774,4 @@ static int __init omap2_init_devices(void)
 
        return 0;
 }
-arch_initcall(omap2_init_devices);
+omap_arch_initcall(omap2_init_devices);