]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/commit
UBI: fix warnings when debugging is enabled
authorArtem Bityutskiy <Artem.Bityutskiy@nokia.com>
Wed, 12 Nov 2008 08:14:10 +0000 (10:14 +0200)
committerArtem Bityutskiy <Artem.Bityutskiy@nokia.com>
Wed, 3 Dec 2008 11:24:48 +0000 (13:24 +0200)
commited45819f315b5a8844b5bfce881a18e9f3a055e7
treedc843958848ed8126ec17e35c5d784f5ef4b6702
parentf6f7b52e2f6149d2ee365717afff315b05720162
UBI: fix warnings when debugging is enabled

The 'ubi_io_read_vid_hdr()' and 'ubi_io_read_ec_hdr()' function
have the 'verbose' argument which controls whether they should
print a warning if the VID/EC header was not found or was corrupted.
Some callers require the headers to be OK, and pass 1. Some allow
a corrupted/not present header, and pass 0.

       if (UBI_IO_DEBUG)
               verbose = 1;

And UBI_IO_DEBUG is 1 if CONFIG_MTD_UBI_DEBUG_MSG_BLD is true. So in
this case the warning is printed all the time. This confuses people.

Thus, do not print the messages as warnings if UBI_IO_DEBUG is true,
but print them as debugging messages instead.

Signed-off-by: Artem Bityutskiy <Artem.Bityutskiy@nokia.com>
drivers/mtd/ubi/io.c