Move AHB to core_initcall in order to instanciate this device earlier than others since IOMMU depends on AHB and then IOMMU driver needs to reigster other platform devices as IOMMU'able. Signed-off-by: Hiroshi Doyu <hdoyu@xxxxxxxxxx> --- drivers/amba/tegra-ahb.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/drivers/amba/tegra-ahb.c b/drivers/amba/tegra-ahb.c index 1f44e56..08e898d 100644 --- a/drivers/amba/tegra-ahb.c +++ b/drivers/amba/tegra-ahb.c @@ -283,7 +283,12 @@ static struct platform_driver tegra_ahb_driver = { .pm = &tegra_ahb_pm, }, }; -module_platform_driver(tegra_ahb_driver); + +static int tegra_ahb_init(void) +{ + return platform_driver_register(&tegra_ahb_driver); +} +core_initcall(tegra_ahb_init); MODULE_AUTHOR("Hiroshi DOYU <hdoyu@xxxxxxxxxx>"); MODULE_DESCRIPTION("Tegra AHB driver"); -- 1.8.1.5 -- To unsubscribe from this list: send the line "unsubscribe linux-tegra" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html