Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 35109451 authored by Roel Kluin's avatar Roel Kluin Committed by David Woodhouse
Browse files

mtd: inftl: misplaced parenthesis in find_boot_record



The parenthesis was misplaced, upon error a one was shown.

[dwmw2: Fix the code not to do the assignment within the if() statement]
Signed-off-by: default avatarRoel Kluin <roel.kluin@gmail.com>
Signed-off-by: default avatarArtem Bityutskiy <Artem.Bityutskiy@nokia.com>
Signed-off-by: default avatarDavid Woodhouse <David.Woodhouse@intel.com>
parent 932f5d21
Loading
Loading
Loading
Loading
+4 −3
Original line number Diff line number Diff line
@@ -100,9 +100,10 @@ static int find_boot_record(struct INFTLrecord *inftl)
		}

		/* To be safer with BIOS, also use erase mark as discriminant */
		if ((ret = inftl_read_oob(mtd, block * inftl->EraseSize +
					  SECTORSIZE + 8, 8, &retlen,
					  (char *)&h1) < 0)) {
		ret = inftl_read_oob(mtd,
				     block * inftl->EraseSize + SECTORSIZE + 8,
				     8, &retlen,(char *)&h1);
		if (ret < 0) {
			printk(KERN_WARNING "INFTL: ANAND header found at "
				"0x%x in mtd%d, but OOB data read failed "
				"(err %d)\n", block * inftl->EraseSize,