Commit 2a7295b2 authored by Andrew Morton's avatar Andrew Morton Committed by David Woodhouse

[MTD] [NAND] Work around false compiler warning in CAFÉ driver

drivers/mtd/nand/cafe.c: In function 'cafe_nand_cmdfunc':
drivers/mtd/nand/cafe.c:269: warning: 'irqs' may be used uninitialized in this function
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarDavid Woodhouse <dwmw2@infradead.org>
parent 7be26bfb
...@@ -265,10 +265,10 @@ static void cafe_nand_cmdfunc(struct mtd_info *mtd, unsigned command, ...@@ -265,10 +265,10 @@ static void cafe_nand_cmdfunc(struct mtd_info *mtd, unsigned command,
ndelay(100); ndelay(100);
if (1) { if (1) {
int c = 500000; int c;
uint32_t irqs; uint32_t irqs;
while (c--) { for (c = 500000; c != 0; c--) {
irqs = cafe_readl(cafe, NAND_IRQ); irqs = cafe_readl(cafe, NAND_IRQ);
if (irqs & doneint) if (irqs & doneint)
break; break;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment