linux-spi.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [patch] spi: pic32-sqi: silence array overflow warning
@ 2016-04-22  9:55 Dan Carpenter
  2016-04-22  9:58 ` Purna Chandra Mandal
  2016-04-22 15:27 ` Applied "spi: pic32-sqi: silence array overflow warning" to the spi tree Mark Brown
  0 siblings, 2 replies; 3+ messages in thread
From: Dan Carpenter @ 2016-04-22  9:55 UTC (permalink / raw)
  To: Mark Brown, Purna Chandra Mandal; +Cc: linux-spi, linux-kernel, kernel-janitors

We read one element beyond the end of the array when we access
"rdesc[i + 1]" so it causes a static checker warning.  It's harmless
because we write over it again on the next line.  But let's just silence
the warning.

Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>

diff --git a/drivers/spi/spi-pic32-sqi.c b/drivers/spi/spi-pic32-sqi.c
index b215347..74b9e68 100644
--- a/drivers/spi/spi-pic32-sqi.c
+++ b/drivers/spi/spi-pic32-sqi.c
@@ -537,7 +537,7 @@ static int ring_desc_ring_alloc(struct pic32_sqi *sqi)
 	}
 
 	/* Prepare BD: chain to next BD(s) */
-	for (i = 0, rdesc = sqi->ring; i < PESQI_BD_COUNT; i++)
+	for (i = 0, rdesc = sqi->ring; i < PESQI_BD_COUNT - 1; i++)
 		bd[i].bd_nextp = rdesc[i + 1].bd_dma;
 	bd[PESQI_BD_COUNT - 1].bd_nextp = 0;
 

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

end of thread, other threads:[~2016-04-22 15:27 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-04-22  9:55 [patch] spi: pic32-sqi: silence array overflow warning Dan Carpenter
2016-04-22  9:58 ` Purna Chandra Mandal
2016-04-22 15:27 ` Applied "spi: pic32-sqi: silence array overflow warning" to the spi tree Mark Brown

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).