Commit 19cd7b7d authored by Artem Bityutskiy's avatar Artem Bityutskiy

UBI: fix error message

Make it print "UBI error: cannot attach mtd4"
instead of "UBI error: cannot attach 4"
Signed-off-by: default avatarArtem Bityutskiy <Artem.Bityutskiy@nokia.com>
parent fc398769
...@@ -1000,8 +1000,8 @@ static int __init ubi_init(void) ...@@ -1000,8 +1000,8 @@ static int __init ubi_init(void)
mutex_unlock(&ubi_devices_mutex); mutex_unlock(&ubi_devices_mutex);
if (err < 0) { if (err < 0) {
put_mtd_device(mtd); put_mtd_device(mtd);
printk(KERN_ERR "UBI error: cannot attach %s\n", printk(KERN_ERR "UBI error: cannot attach mtd%d\n",
p->name); mtd->index);
goto out_detach; goto out_detach;
} }
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment