]> git.hungrycats.org Git - linux/commitdiff
mtd: cafe_nand: fix an & vs | mistake
authorDan Carpenter <dan.carpenter@oracle.com>
Sat, 9 Jun 2012 16:08:25 +0000 (19:08 +0300)
committerWilly Tarreau <w@1wt.eu>
Sun, 7 Oct 2012 21:41:04 +0000 (23:41 +0200)
commit 48f8b641297df49021093763a3271119a84990a2 upstream.

The intent here was clearly to set result to true if the 0x40000000 flag
was set.  But instead there was a | vs & typo and we always set result
to true.

Artem: check the spec at
wiki.laptop.org/images/5/5c/88ALP01_Datasheet_July_2007.pdf
and this fix looks correct.

Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: Artem Bityutskiy <artem.bityutskiy@linux.intel.com>
Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: Willy Tarreau <w@1wt.eu>
drivers/mtd/nand/cafe_nand.c

index c828d9ac7bd71a7709fac3ea16bd1e9419e062f6..97b9c7b0a2bf2010f76e02f778ff1445d23cbd8f 100644 (file)
@@ -103,7 +103,7 @@ static const char *part_probes[] = { "cmdlinepart", "RedBoot", NULL };
 static int cafe_device_ready(struct mtd_info *mtd)
 {
        struct cafe_priv *cafe = mtd->priv;
-       int result = !!(cafe_readl(cafe, NAND_STATUS) | 0x40000000);
+       int result = !!(cafe_readl(cafe, NAND_STATUS) & 0x40000000);
        uint32_t irqs = cafe_readl(cafe, NAND_IRQ);
 
        cafe_writel(cafe, irqs, NAND_IRQ);