* Re: [patch] mtd: cafe_nand: fix an & vs | mistake
2012-06-09 16:08 ` [patch] mtd: cafe_nand: fix an & vs | mistake Dan Carpenter
@ 2012-06-18 11:07 ` Artem Bityutskiy
2012-06-18 11:25 ` Artem Bityutskiy
1 sibling, 0 replies; 4+ messages in thread
From: Artem Bityutskiy @ 2012-06-18 11:07 UTC (permalink / raw)
To: Dan Carpenter
Cc: Mike Dunn, Dmitry Eremin-Solenikov, kernel-janitors, linux-mtd,
Brian Norris, David Woodhouse
[-- Attachment #1: Type: text/plain, Size: 606 bytes --]
On Sat, 2012-06-09 at 19:08 +0300, Dan Carpenter wrote:
> 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.
>
> Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
> ---
> I do not have the hardware to test this. The original code is clearly
> buggy, but what about if 0x40000000 is the wrong flag?
Looks like it is the right flag, I've checked
wiki.laptop.org/images/5/5c/88ALP01_Datasheet_July_2007.pdf
and your patch looks correct.
--
Best Regards,
Artem Bityutskiy
[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 836 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [patch] mtd: cafe_nand: fix an & vs | mistake
2012-06-09 16:08 ` [patch] mtd: cafe_nand: fix an & vs | mistake Dan Carpenter
2012-06-18 11:07 ` Artem Bityutskiy
@ 2012-06-18 11:25 ` Artem Bityutskiy
2012-08-17 21:44 ` Daniel Drake
1 sibling, 1 reply; 4+ messages in thread
From: Artem Bityutskiy @ 2012-06-18 11:25 UTC (permalink / raw)
To: Dan Carpenter, Daniel Drake
Cc: Mike Dunn, Dmitry Eremin-Solenikov, kernel-janitors, linux-mtd,
Brian Norris, David Woodhouse
[-- Attachment #1: Type: text/plain, Size: 1434 bytes --]
Pushed this patch to l2-mtd.git and added CC to -stable. The patch seems
to be a real bug-fix. Daniel, could you please check it - it will be
shame if it hits -stable and breaks something.
Thanks!
On Sat, 2012-06-09 at 19:08 +0300, Dan Carpenter wrote:
> 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.
>
> Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
> ---
> I do not have the hardware to test this. The original code is clearly
> buggy, but what about if 0x40000000 is the wrong flag?
>
> diff --git a/drivers/mtd/nand/cafe_nand.c b/drivers/mtd/nand/cafe_nand.c
> index f3594a6..ac0d967 100644
> --- a/drivers/mtd/nand/cafe_nand.c
> +++ b/drivers/mtd/nand/cafe_nand.c
> @@ -102,7 +102,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);
>
> ______________________________________________________
> Linux MTD discussion mailing list
> http://lists.infradead.org/mailman/listinfo/linux-mtd/
--
Best Regards,
Artem Bityutskiy
[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 836 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread