[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <20191102004213.24909-1-jbi.octave@gmail.com>
Date: Sat, 2 Nov 2019 00:42:13 +0000
From: Jules Irenge <jbi.octave@...il.com>
To: outreachy-kernel@...glegroups.com
Cc: julia.lawall@...6.fr, gregkh@...uxfoundation.org,
m.tretter@...gutronix.de, linux-kernel@...r.kernel.org,
Jules Irenge <jbi.octave@...il.com>
Subject: [PATCH] staging: allegreo-dvt: fix warning of comparison of 0/1 to bool
Fix warning of comparison of 0/1 to bool variable.
Warning reported by coccinelle tool.
Signed-off-by: Jules Irenge <jbi.octave@...il.com>
---
drivers/staging/media/allegro-dvt/nal-h264.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/staging/media/allegro-dvt/nal-h264.c b/drivers/staging/media/allegro-dvt/nal-h264.c
index 4e14b77851e1..bd48b8883572 100644
--- a/drivers/staging/media/allegro-dvt/nal-h264.c
+++ b/drivers/staging/media/allegro-dvt/nal-h264.c
@@ -235,7 +235,7 @@ static inline int rbsp_write_bit(struct rbsp *rbsp, bool value)
rbsp->pos++;
- if (value == 1 ||
+ if (value ||
(rbsp->num_consecutive_zeros < 7 && (rbsp->pos % 8 == 0))) {
rbsp->num_consecutive_zeros = 0;
} else {
--
2.21.0
Powered by blists - more mailing lists