[<prev] [next>] [day] [month] [year] [list]
Message-Id: <20200807083548.204360-16-dwlsalmeida@gmail.com>
Date: Fri, 7 Aug 2020 05:35:43 -0300
From: "Daniel W. S. Almeida" <dwlsalmeida@...il.com>
To: Dave Stevenson <dave.stevenson@...pberrypi.com>
Cc: skhan@...uxfoundation.org,
"Daniel W. S. Almeida" <dwlsalmeida@...il.com>,
Mauro Carvalho Chehab <mchehab@...nel.org>,
linux-media@...r.kernel.org, linux-kernel@...r.kernel.org
Subject: [PATCH 16/20] media: i2c: imx219.c: fix assignment of 0/1 to bool variable
From: "Daniel W. S. Almeida" <dwlsalmeida@...il.com>
Fix the following coccinelle report:
drivers/media/i2c/imx219.c:1191:1-18:
WARNING: Assignment of 0/1 to bool variable
Replace the assignment to 0 with false instead.
Found using - Coccinelle (http://coccinelle.lip6.fr)
Signed-off-by: Daniel W. S. Almeida <dwlsalmeida@...il.com>
---
drivers/media/i2c/imx219.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/media/i2c/imx219.c b/drivers/media/i2c/imx219.c
index f64c0ef7a897..1cee45e35355 100644
--- a/drivers/media/i2c/imx219.c
+++ b/drivers/media/i2c/imx219.c
@@ -1188,7 +1188,7 @@ static int __maybe_unused imx219_resume(struct device *dev)
error:
imx219_stop_streaming(imx219);
- imx219->streaming = 0;
+ imx219->streaming = false;
return ret;
}
--
2.28.0
Powered by blists - more mailing lists