ubi: Print skip_check in ubi_dump_vol_info()
authorStefan Roese <sr@denx.de>
Tue, 17 Sep 2019 06:31:08 +0000 (08:31 +0200)
committerRichard Weinberger <richard@nod.at>
Sun, 17 Nov 2019 20:20:53 +0000 (21:20 +0100)
It might be interesting, if "skip_check" is set or not, so lets print
this flag in ubi_dump_vol_info() as well.

Signed-off-by: Stefan Roese <sr@denx.de>
Cc: Richard Weinberger <richard@nod.at>
Cc: Boris Brezillon <boris.brezillon@collabora.com>
Cc: Heiko Schocher <hs@denx.de>
Signed-off-by: Richard Weinberger <richard@nod.at>
drivers/mtd/ubi/debug.c

index a1dff92..72808a5 100644 (file)
@@ -107,6 +107,7 @@ void ubi_dump_vol_info(const struct ubi_volume *vol)
        pr_err("\tlast_eb_bytes   %d\n", vol->last_eb_bytes);
        pr_err("\tcorrupted       %d\n", vol->corrupted);
        pr_err("\tupd_marker      %d\n", vol->upd_marker);
+       pr_err("\tskip_check      %d\n", vol->skip_check);
 
        if (vol->name_len <= UBI_VOL_NAME_MAX &&
            strnlen(vol->name, vol->name_len + 1) == vol->name_len) {