diff options
Diffstat (limited to 'drivers/mtd/ubi/scan.c')
-rw-r--r-- | drivers/mtd/ubi/scan.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/mtd/ubi/scan.c b/drivers/mtd/ubi/scan.c index 37cb18ff10c6..6f9080767e3f 100644 --- a/drivers/mtd/ubi/scan.c +++ b/drivers/mtd/ubi/scan.c | |||
@@ -748,7 +748,7 @@ static int process_eb(struct ubi_device *ubi, struct ubi_scan_info *si, | |||
748 | return err; | 748 | return err; |
749 | else if (err == UBI_IO_BITFLIPS) | 749 | else if (err == UBI_IO_BITFLIPS) |
750 | bitflips = 1; | 750 | bitflips = 1; |
751 | else if (err == UBI_IO_FF) | 751 | else if (err == UBI_IO_FF || err == UBI_IO_FF_BITFLIPS) |
752 | return add_to_list(si, pnum, UBI_SCAN_UNKNOWN_EC, &si->erase); | 752 | return add_to_list(si, pnum, UBI_SCAN_UNKNOWN_EC, &si->erase); |
753 | else if (err == UBI_IO_BAD_HDR_EBADMSG || err == UBI_IO_BAD_HDR) { | 753 | else if (err == UBI_IO_BAD_HDR_EBADMSG || err == UBI_IO_BAD_HDR) { |
754 | /* | 754 | /* |
@@ -817,7 +817,7 @@ static int process_eb(struct ubi_device *ubi, struct ubi_scan_info *si, | |||
817 | else if (err == UBI_IO_BITFLIPS) | 817 | else if (err == UBI_IO_BITFLIPS) |
818 | bitflips = 1; | 818 | bitflips = 1; |
819 | else if (err == UBI_IO_BAD_HDR_EBADMSG || err == UBI_IO_BAD_HDR || | 819 | else if (err == UBI_IO_BAD_HDR_EBADMSG || err == UBI_IO_BAD_HDR || |
820 | (err == UBI_IO_FF && ec_corr)) { | 820 | (err == UBI_IO_FF && ec_corr) || err == UBI_IO_FF_BITFLIPS) { |
821 | /* VID header is corrupted */ | 821 | /* VID header is corrupted */ |
822 | if (err == UBI_IO_BAD_HDR_EBADMSG || | 822 | if (err == UBI_IO_BAD_HDR_EBADMSG || |
823 | ec_corr == UBI_IO_BAD_HDR_EBADMSG) | 823 | ec_corr == UBI_IO_BAD_HDR_EBADMSG) |