summaryrefslogtreecommitdiffstats
path: root/drivers/mtd/ubi
diff options
context:
space:
mode:
authorArtem Bityutskiy <Artem.Bityutskiy@nokia.com>2010-07-30 16:31:38 +0300
committerArtem Bityutskiy <Artem.Bityutskiy@nokia.com>2010-08-02 07:21:19 +0300
commit7cdb996ee4d04b5bb2cd544b14e8eb91cfd7fe64 (patch)
treea533532fd99fb4445727344d8656586deb5a8094 /drivers/mtd/ubi
parent158132c9abbccce802def10e5ffaf044b266a6e1 (diff)
downloadop-kernel-dev-7cdb996ee4d04b5bb2cd544b14e8eb91cfd7fe64.zip
op-kernel-dev-7cdb996ee4d04b5bb2cd544b14e8eb91cfd7fe64.tar.gz
UBI: do not print message about corruptes PEBs if we have none of them
Currently UBI prints UBI: corrupted PEBs will be formatted even if there are not corrupted PEBs. Fix this. Signed-off-by: Artem Bityutskiy <Artem.Bityutskiy@nokia.com>
Diffstat (limited to 'drivers/mtd/ubi')
-rw-r--r--drivers/mtd/ubi/scan.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mtd/ubi/scan.c b/drivers/mtd/ubi/scan.c
index a86c048..372a15a 100644
--- a/drivers/mtd/ubi/scan.c
+++ b/drivers/mtd/ubi/scan.c
@@ -964,7 +964,7 @@ static int check_what_we_have(struct ubi_device *ubi, struct ubi_scan_info *si)
}
}
- if (si->corr_peb_count >= 0)
+ if (si->corr_peb_count > 0)
ubi_msg("corrupted PEBs will be formatted");
return 0;
}
OpenPOWER on IntegriCloud