aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/mtd/nand/cafe.c
diff options
context:
space:
mode:
authorDavid Woodhouse <dwmw2@infradead.org>2006-10-28 10:08:38 -0400
committerDavid Woodhouse <dwmw2@infradead.org>2006-10-28 10:08:38 -0400
commita020727b1628cb4d7b70733222253c7fa3ec6113 (patch)
treea46fbfb4e79d0f801dacc706debb1aaa0cb4ee61 /drivers/mtd/nand/cafe.c
parent63a1423763c6c38eeeaf6dc8cee986514ab67aed (diff)
[MTD] NAND: Fix timing calculation in CAFÉ debugging message
Signed-off-by: David Woodhouse <dwmw2@infradead.org>
Diffstat (limited to 'drivers/mtd/nand/cafe.c')
-rw-r--r--drivers/mtd/nand/cafe.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/mtd/nand/cafe.c b/drivers/mtd/nand/cafe.c
index 887040c6c2d6..35a868708e03 100644
--- a/drivers/mtd/nand/cafe.c
+++ b/drivers/mtd/nand/cafe.c
@@ -272,7 +272,8 @@ static void cafe_nand_cmdfunc(struct mtd_info *mtd, unsigned command,
272 cpu_relax(); 272 cpu_relax();
273 } 273 }
274 writel(doneint, cafe->mmio + CAFE_NAND_IRQ); 274 writel(doneint, cafe->mmio + CAFE_NAND_IRQ);
275 cafe_dev_dbg(&cafe->pdev->dev, "Command %x completed after %d usec, irqs %x (%x)\n", command, 50000-c, irqs, readl(cafe->mmio + CAFE_NAND_IRQ)); 275 cafe_dev_dbg(&cafe->pdev->dev, "Command %x completed after %d usec, irqs %x (%x)\n",
276 command, 500000-c, irqs, readl(cafe->mmio + CAFE_NAND_IRQ));
276 } 277 }
277 278
278 279