Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1639328 > unrolled thread

[PATCH] V4L/DVB: ir-core: fix gcc-7 warning on bool arithmetic

Started byArnd Bergmann <arnd@arndb.de>
First post2017-05-11 13:50 +0200
Last post2017-05-11 13:50 +0200
Articles 1 — 1 participant

Back to article view | Back to linux.kernel


Contents

  [PATCH] V4L/DVB: ir-core: fix gcc-7 warning on bool arithmetic Arnd Bergmann <arnd@arndb.de> - 2017-05-11 13:50 +0200

#1639328 — [PATCH] V4L/DVB: ir-core: fix gcc-7 warning on bool arithmetic

FromArnd Bergmann <arnd@arndb.de>
Date2017-05-11 13:50 +0200
Subject[PATCH] V4L/DVB: ir-core: fix gcc-7 warning on bool arithmetic
Message-ID<tFULw-5Ng-17@gated-at.bofh.it>
gcc-7 suggests that an expression using a bitwise not and a bitmask
on a 'bool' variable is better written using boolean logic:

drivers/media/rc/imon.c: In function 'imon_incoming_scancode':
drivers/media/rc/imon.c:1725:22: error: '~' on a boolean expression [-Werror=bool-operation]
    ictx->pad_mouse = ~(ictx->pad_mouse) & 0x1;
                      ^
drivers/media/rc/imon.c:1725:22: note: did you mean to use logical not?

I agree.

Fixes: 21677cfc562a ("V4L/DVB: ir-core: add imon driver")
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
---
 drivers/media/rc/imon.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/media/rc/imon.c b/drivers/media/rc/imon.c
index 3489010601b5..bd76534a2749 100644
--- a/drivers/media/rc/imon.c
+++ b/drivers/media/rc/imon.c
@@ -1722,7 +1722,7 @@ static void imon_incoming_scancode(struct imon_context *ictx,
 	if (kc == KEY_KEYBOARD && !ictx->release_code) {
 		ictx->last_keycode = kc;
 		if (!nomouse) {
-			ictx->pad_mouse = ~(ictx->pad_mouse) & 0x1;
+			ictx->pad_mouse = !ictx->pad_mouse;
 			dev_dbg(dev, "toggling to %s mode\n",
 				ictx->pad_mouse ? "mouse" : "keyboard");
 			spin_unlock_irqrestore(&ictx->kc_lock, flags);
-- 
2.9.0

[toc] | [standalone]


Back to top | Article view | linux.kernel


csiph-web