[PATCH] mtd: bcm47xxpart: fix off by one in partitions limit
Rafał Miłecki
zajec5 at gmail.com
Wed Feb 26 07:57:20 EST 2014
Signed-off-by: Rafał Miłecki <zajec5 at gmail.com>
---
drivers/mtd/bcm47xxpart.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/mtd/bcm47xxpart.c b/drivers/mtd/bcm47xxpart.c
index de1eb92..88802a8 100644
--- a/drivers/mtd/bcm47xxpart.c
+++ b/drivers/mtd/bcm47xxpart.c
@@ -91,7 +91,7 @@ static int bcm47xxpart_parse(struct mtd_info *master,
if (offset >= 0x2000000)
break;
- if (curr_part > BCM47XXPART_MAX_PARTS) {
+ if (curr_part >= BCM47XXPART_MAX_PARTS) {
pr_warn("Reached maximum number of partitions, scanning stopped!\n");
break;
}
--
1.8.4.5
More information about the linux-mtd
mailing list