[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <cf1dda3a372896cb01033ce084a7deb9620df7aa.1594599118.git.mirq-linux@rere.qmqm.pl>
Date: Mon, 13 Jul 2020 02:24:55 +0200
From: Michał Mirosław <mirq-linux@...e.qmqm.pl>
To: Henrik Rydberg <rydberg@...math.org>,
Dmitry Osipenko <digetx@...il.com>,
Dmitry Torokhov <dmitry.torokhov@...il.com>,
James Chen <james.chen@....com.tw>,
Johnny Chuang <johnny.chuang@....com.tw>,
Scott Liu <scott.liu@....com.tw>
Cc: linux-input@...r.kernel.org, linux-kernel@...r.kernel.org
Subject: [PATCH v6 5/5] input: mt: cleanup open-coded __set_bit()
Replace open-coded __set_bit() with the function.
Signed-off-by: Michał Mirosław <mirq-linux@...e.qmqm.pl>
---
drivers/input/input-mt.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/input/input-mt.c b/drivers/input/input-mt.c
index a81e14148407..f699538bdac4 100644
--- a/drivers/input/input-mt.c
+++ b/drivers/input/input-mt.c
@@ -16,7 +16,7 @@ static void copy_abs(struct input_dev *dev, unsigned int dst, unsigned int src)
if (dev->absinfo && test_bit(src, dev->absbit)) {
dev->absinfo[dst] = dev->absinfo[src];
dev->absinfo[dst].fuzz = 0;
- dev->absbit[BIT_WORD(dst)] |= BIT_MASK(dst);
+ __set_bit(dst, dev->absbit);
}
}
--
2.20.1
Powered by blists - more mailing lists