From: Artem Bityutskiy Date: Tue, 12 Feb 2008 14:32:35 +0000 (+0200) Subject: UBI: fix error message X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=19cd7b7de1804a50264dfd5c6ba3c6d332362a77;p=mv-sheeva.git UBI: fix error message Make it print "UBI error: cannot attach mtd4" instead of "UBI error: cannot attach 4" Signed-off-by: Artem Bityutskiy --- diff --git a/drivers/mtd/ubi/build.c b/drivers/mtd/ubi/build.c index 6ac81e35355..27596046297 100644 --- a/drivers/mtd/ubi/build.c +++ b/drivers/mtd/ubi/build.c @@ -1000,8 +1000,8 @@ static int __init ubi_init(void) mutex_unlock(&ubi_devices_mutex); if (err < 0) { put_mtd_device(mtd); - printk(KERN_ERR "UBI error: cannot attach %s\n", - p->name); + printk(KERN_ERR "UBI error: cannot attach mtd%d\n", + mtd->index); goto out_detach; } }