aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDan Carpenter <dan.carpenter@oracle.com>2014-07-31 11:36:20 -0400
committerBrian Norris <computersforpeace@gmail.com>2014-08-19 14:53:05 -0400
commit5828c60826e9422169b3711aa58a583242864cc8 (patch)
tree466d1dbaa3f8c45eb0fc930db912c80c6f182676
parent7d1311b93e58ed55f3a31cc8f94c4b8fe988a2b9 (diff)
mtd: ndfc: silence an array underflow static checker warning
We check "cs" for array overflows but we don't check for underflows and it upsets the static checkers. Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> Signed-off-by: Brian Norris <computersforpeace@gmail.com>
-rw-r--r--drivers/mtd/nand/ndfc.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/mtd/nand/ndfc.c b/drivers/mtd/nand/ndfc.c
index 69eaba690a99..253a644da76a 100644
--- a/drivers/mtd/nand/ndfc.c
+++ b/drivers/mtd/nand/ndfc.c
@@ -203,7 +203,8 @@ static int ndfc_probe(struct platform_device *ofdev)
203 struct ndfc_controller *ndfc; 203 struct ndfc_controller *ndfc;
204 const __be32 *reg; 204 const __be32 *reg;
205 u32 ccr; 205 u32 ccr;
206 int err, len, cs; 206 u32 cs;
207 int err, len;
207 208
208 /* Read the reg property to get the chip select */ 209 /* Read the reg property to get the chip select */
209 reg = of_get_property(ofdev->dev.of_node, "reg", &len); 210 reg = of_get_property(ofdev->dev.of_node, "reg", &len);