aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRon <ron@debian.org>2014-03-15 13:31:08 -0400
committerBrian Norris <computersforpeace@gmail.com>2014-04-16 02:25:36 -0400
commit47570bb1f533b2a48e5222db8545b7842c229331 (patch)
tree04d622505dc3e2133e413c1d6cdd3aca1be8698f
parent9fd6c6c18c1a4a3220473c76fd447c5708b5ecf9 (diff)
mtd: nand: use the nand_read_subpage index everywhere
Now that the index variable is correctly set earlier in this function we can use it in other places that compute the same thing too. Signed-off-by: Ron Lee <ron@debian.org> Signed-off-by: Brian Norris <computersforpeace@gmail.com>
-rw-r--r--drivers/mtd/nand/nand_base.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/mtd/nand/nand_base.c b/drivers/mtd/nand/nand_base.c
index 9d01c4df838c..b8eabde8dbdc 100644
--- a/drivers/mtd/nand/nand_base.c
+++ b/drivers/mtd/nand/nand_base.c
@@ -1204,8 +1204,7 @@ static int nand_read_subpage(struct mtd_info *mtd, struct nand_chip *chip,
1204 * ecc.pos. Let's make sure that there are no gaps in ECC positions. 1204 * ecc.pos. Let's make sure that there are no gaps in ECC positions.
1205 */ 1205 */
1206 for (i = 0; i < eccfrag_len - 1; i++) { 1206 for (i = 0; i < eccfrag_len - 1; i++) {
1207 if (eccpos[i + start_step * chip->ecc.bytes] + 1 != 1207 if (eccpos[i + index] + 1 != eccpos[i + index + 1]) {
1208 eccpos[i + start_step * chip->ecc.bytes + 1]) {
1209 gaps = 1; 1208 gaps = 1;
1210 break; 1209 break;
1211 } 1210 }