On Mon, Sep 29, 2008 at 06:40:43PM +0530, ext Pakaravoor, Jagadeesh wrote: > From: Jagadeesh Bhaskar Pakaravoor <j-pakaravoor@xxxxxx> > > Return type of gpmc_init() function is void. Also, the error values > returned by the function is not used by the caller. Hence it should > not be returning any value. > > Signed-off-by: Anand Gadiyar <gadiyar@xxxxxx> > Signed-off-by: Jagadeesh Bhaskar Pakaravoor <j-pakaravoor@xxxxxx> > -- > Index: linux-omap-git/arch/arm/mach-omap2/gpmc.c > =================================================================== > --- linux-omap-git.orig/arch/arm/mach-omap2/gpmc.c 2008-09-25 17:30:24.000000000 +0530 > +++ linux-omap-git/arch/arm/mach-omap2/gpmc.c 2008-09-29 18:26:40.845433948 +0530 > @@ -427,16 +427,13 @@ void __init gpmc_init(void) > } > > gpmc_l3_clk = clk_get(NULL, ck); > - if (IS_ERR(gpmc_l3_clk)) { > + if (IS_ERR(gpmc_l3_clk)) > printk(KERN_ERR "Could not get GPMC clock %s\n", ck); > - return -ENODEV; > - } This has to stop somehow if we can't get the clock or can't ioremap. How about changing to: BUG_ON(IS_ERR(gpmc_l3_clk)); and BUG_ONG(!gpmc_base); -- balbi -- 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