A driver is being created out of GPMC code. This is being attempted to acheive by not breaking existing interface, necessitating requirement of GPMC peripherals being able to work with using new interface as well as with the old existing interface. To not break existing, initcall is required as in old interface GPMC is configured at arch initcall and GPMC should be ready to handle old interface by that time Note: This commit has to be reverted once all boards have been converted to work with gpmc driver interface Signed-off-by: Afzal Mohammed <afzal@xxxxxx> --- arch/arm/mach-omap2/gpmc.c | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/arch/arm/mach-omap2/gpmc.c b/arch/arm/mach-omap2/gpmc.c index f8131f8..f64f55a 100644 --- a/arch/arm/mach-omap2/gpmc.c +++ b/arch/arm/mach-omap2/gpmc.c @@ -941,7 +941,7 @@ postcore_initcall(gpmc_init); __init int omap_gpmc_init(struct gpmc_pdata *pdata) { struct omap_hwmod *oh; - struct platform_device *pdev; + static struct platform_device *pdev; char *name = "omap-gpmc"; char *oh_name = "gpmc"; @@ -951,6 +951,11 @@ __init int omap_gpmc_init(struct gpmc_pdata *pdata) return -ENODEV; } + if (pdev != NULL) { + omap_device_delete(pdev->archdata.od); + platform_device_unregister(pdev); + } + gpmc_l3_clk = oh->_clk; if (!gpmc_l3_clk) { pr_err("Could not get GPMC clock\n"); @@ -968,6 +973,17 @@ __init int omap_gpmc_init(struct gpmc_pdata *pdata) return 0; } +static int __init gpmc_pre_init(void) +{ + static struct gpmc_device_pdata *gpmc_device_data[1]; + struct gpmc_pdata gpmc_data = { + .device_pdata = gpmc_device_data, + }; + + return omap_gpmc_init(&gpmc_data); +} +postcore_initcall(gpmc_pre_init); + static irqreturn_t gpmc_handle_irq(int irq, void *dev) { int i; -- 1.7.10.2 -- To unsubscribe from this list: send the line "unsubscribe linux-omap" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html