]> Git Repo - linux.git/commitdiff
spi: pic32-sqi: silence array overflow warning
authorDan Carpenter <[email protected]>
Fri, 22 Apr 2016 09:55:24 +0000 (12:55 +0300)
committerMark Brown <[email protected]>
Fri, 22 Apr 2016 15:25:41 +0000 (16:25 +0100)
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 <[email protected]>
Reviewed-by: Purna Chandra Mandal <[email protected]>
Signed-off-by: Mark Brown <[email protected]>
drivers/spi/spi-pic32-sqi.c

index b21534782ada7d39a3226924bc098177ca8c5ae2..74b9e684b10d37c8fc038668d61aba7b418f117b 100644 (file)
@@ -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;
 
This page took 0.0596640000000001 seconds and 4 git commands to generate.