From: Eric Sesterhenn / snakebyte Date: Fri, 31 Mar 2006 10:29:47 +0000 (-0800) Subject: [PATCH] Fix debug statement in inftlcore.c X-Git-Tag: v2.6.17-rc1~135 X-Git-Url: http://pilppa.com/gitweb/?a=commitdiff_plain;h=8b68a1263305d4e8a07d8a43c996969ea9e44292;p=linux-2.6-omap-h63xx.git [PATCH] Fix debug statement in inftlcore.c Fix a copy/paste bug found by cpminer inside the inftlcore.c file Signed-off-by: Eric Sesterhenn Acked-by: Greg Ungerer Cc: Thomas Gleixner Acked-by: David Woodhouse Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/drivers/mtd/inftlcore.c b/drivers/mtd/inftlcore.c index abb76aa6326..a3b92479719 100644 --- a/drivers/mtd/inftlcore.c +++ b/drivers/mtd/inftlcore.c @@ -129,7 +129,7 @@ static void inftl_add_mtd(struct mtd_blktrans_ops *tr, struct mtd_info *mtd) return; } #ifdef PSYCHO_DEBUG - printk(KERN_INFO "INFTL: Found new nftl%c\n", nftl->mbd.devnum + 'a'); + printk(KERN_INFO "INFTL: Found new inftl%c\n", inftl->mbd.devnum + 'a'); #endif return; }