summaryrefslogtreecommitdiff
path: root/drivers/mtd
diff options
context:
space:
mode:
authorDeepak Saxena <dsaxena@plexity.net>2008-10-08 23:56:24 +0400
committerArtem Bityutskiy <Artem.Bityutskiy@nokia.com>2008-10-09 17:19:04 +0400
commit762a9f291bfdf9e4d5c2b80d730d79055c8d8c99 (patch)
tree1f0c9b238cfacf8964a1f376c162953e2e38d4bd /drivers/mtd
parent0e4a008a4f389b468cfe8b58c7d77882a6e25695 (diff)
downloadlinux-762a9f291bfdf9e4d5c2b80d730d79055c8d8c99.tar.xz
UBI: print reserved_peb when it is too large
This patch makes debugging a missconfigured UBI a bit easier by providing the needed information in the boot log. Signed-off-by: Deepak Saxena <dsaxena@laptop.org> Signed-off-by: Artem Bityutskiy <Artem.Bityutskiy@nokia.com>
Diffstat (limited to 'drivers/mtd')
-rw-r--r--drivers/mtd/ubi/vtbl.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/mtd/ubi/vtbl.c b/drivers/mtd/ubi/vtbl.c
index 217d0e111b2a..333c8941552f 100644
--- a/drivers/mtd/ubi/vtbl.c
+++ b/drivers/mtd/ubi/vtbl.c
@@ -244,8 +244,8 @@ static int vtbl_check(const struct ubi_device *ubi,
}
if (reserved_pebs > ubi->good_peb_count) {
- dbg_err("too large reserved_pebs, good PEBs %d",
- ubi->good_peb_count);
+ dbg_err("too large reserved_pebs %d, good PEBs %d",
+ reserved_pebs, ubi->good_peb_count);
err = 9;
goto bad;
}