public inbox for linux-mtd@lists.infradead.org
 help / color / mirror / Atom feed
* [PATCH v2] mtd: spi-nor: core: correct type of i
@ 2024-03-04  9:01 Muhammad Usama Anjum
  2024-03-04  9:11 ` Tudor Ambarus
                   ` (6 more replies)
  0 siblings, 7 replies; 10+ messages in thread
From: Muhammad Usama Anjum @ 2024-03-04  9:01 UTC (permalink / raw)
  To: Tudor Ambarus, Pratyush Yadav, Michael Walle, Miquel Raynal,
	Richard Weinberger, Vignesh Raghavendra, Takahiro Kuwano
  Cc: Muhammad Usama Anjum, kernel, kernel-janitors, linux-mtd,
	linux-kernel

The i should be signed to find out the end of the loop. Otherwise,
i >= 0 is always true and loop becomes infinite. Make its type to be
int.

Fixes: 6a9eda34418f ("mtd: spi-nor: core: set mtd->eraseregions for non-uniform erase map")
Signed-off-by: Muhammad Usama Anjum <usama.anjum@collabora.com>
---
Changes since v1:
- Make i int instead of u8
---
 drivers/mtd/spi-nor/core.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/mtd/spi-nor/core.c b/drivers/mtd/spi-nor/core.c
index 65b32ea59afc6..3e1f1913536bf 100644
--- a/drivers/mtd/spi-nor/core.c
+++ b/drivers/mtd/spi-nor/core.c
@@ -3373,7 +3373,7 @@ static u32
 spi_nor_get_region_erasesize(const struct spi_nor_erase_region *region,
 			     const struct spi_nor_erase_type *erase_type)
 {
-	u8 i;
+	int i;
 
 	if (region->overlaid)
 		return region->size;
-- 
2.39.2


______________________________________________________
Linux MTD discussion mailing list
http://lists.infradead.org/mailman/listinfo/linux-mtd/

^ permalink raw reply related	[flat|nested] 10+ messages in thread

end of thread, other threads:[~2024-03-13 22:23 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-03-04  9:01 [PATCH v2] mtd: spi-nor: core: correct type of i Muhammad Usama Anjum
2024-03-04  9:11 ` Tudor Ambarus
2024-03-04  9:16 ` Michael Walle
2024-03-04 10:11 ` Dan Carpenter
2024-03-04 10:32 ` AngeloGioacchino Del Regno
2024-03-05  1:10 ` Takahiro Kuwano
2024-03-11 17:11 ` Muhammad Usama Anjum
2024-03-12 12:14   ` Pratyush Yadav
2024-03-12 12:16     ` Muhammad Usama Anjum
2024-03-13 22:23 ` Miquel Raynal

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox