* Tony Lindgren <tony@xxxxxxxxxxx> [120830 12:54]: > * Artem Bityutskiy <dedekind1@xxxxxxxxx> [120825 04:49]: > > On Tue, 2012-08-21 at 15:14 +0530, Afzal Mohammed wrote: > > > GPMC platform initialization provides it's clients > > > with interrupts that can be used through struct > > > resource. Make use of it for irq mode functionality. > > > > > > Also now write protect disable is done by GPMC, > > > hence remove it. > > > > > > Signed-off-by: Afzal Mohammed <afzal@xxxxxx> > > > > Acked-by: Artem Bityutskiy <artem.bityutskiy@xxxxxxxxxxxxxxx> > > Thanks I'll apply these into omap devel-gpmc branch. FYI, looks like a new warning got introduced, so I've committed the following trivial patch on top of this series. Regards, Tony From: Tony Lindgren <tony@xxxxxxxxxxx> Date: Mon, 10 Sep 2012 17:14:13 -0700 Subject: [PATCH] mtd: nand omap2: Fix uninitialized err warning Commit bd4156fd (mtd: nand: omap2: use gpmc provided irqs) introduced a new warning: drivers/mtd/nand/omap2.c: In function ‘omap_nand_probe’: drivers/mtd/nand/omap2.c:1267: warning: ‘err’ may be used uninitialized in this function Signed-off-by: Tony Lindgren <tony@xxxxxxxxxxx> --- a/drivers/mtd/nand/omap2.c +++ b/drivers/mtd/nand/omap2.c @@ -1389,6 +1389,7 @@ static int __devinit omap_nand_probe(struct platform_device *pdev) info->gpmc_irq_fifo = platform_get_irq(pdev, 0); if (info->gpmc_irq_fifo <= 0) { dev_err(&pdev->dev, "error getting fifo irq\n"); + err = -ENODEV; goto out_release_mem_region; } err = request_irq(info->gpmc_irq_fifo, omap_nand_irq, -- 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