All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] mtd: nand: omap2: fix error path
@ 2012-09-11  6:28 ` Afzal Mohammed
  0 siblings, 0 replies; 5+ messages in thread
From: Afzal Mohammed @ 2012-09-11  6:28 UTC (permalink / raw)
  To: dedekind1, artem.bityutskiy, linux-omap, linux-mtd; +Cc: Afzal Mohammed

Let probe return error value if gpmc terminal
count interrupt could not be obtained

Signed-off-by: Afzal Mohammed <afzal@ti.com>
---
Hi,

My commit (now in l-o/devel-gpmc),

"bd4156f  mtd: nand: omap2: use gpmc provided irqs"

did not propogate error code properly due to
which this fix was required.

But this has not been mentioned in commit message
as it is not yet in mainline.

Regards
Afzal

 drivers/mtd/nand/omap2.c |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/drivers/mtd/nand/omap2.c b/drivers/mtd/nand/omap2.c
index 337cf0a..27293e3 100644
--- a/drivers/mtd/nand/omap2.c
+++ b/drivers/mtd/nand/omap2.c
@@ -1404,6 +1404,7 @@ static int __devinit omap_nand_probe(struct platform_device *pdev)
 		info->gpmc_irq_count = platform_get_irq(pdev, 1);
 		if (info->gpmc_irq_count <= 0) {
 			dev_err(&pdev->dev, "error getting count irq\n");
+			err = -ENODEV;
 			goto out_release_mem_region;
 		}
 		err = request_irq(info->gpmc_irq_count,	omap_nand_irq,
-- 
1.7.0.4

^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2012-09-11 18:20 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-09-11  6:28 [PATCH] mtd: nand: omap2: fix error path Afzal Mohammed
2012-09-11  6:28 ` Afzal Mohammed
2012-09-11  6:30 ` Mohammed, Afzal
2012-09-11 18:20   ` Tony Lindgren
2012-09-11 18:20     ` Tony Lindgren

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.