diff options
author | Michał Mirosław <mirq-linux@rere.qmqm.pl> | 2020-07-16 03:30:36 +0300 |
---|---|---|
committer | Dmitry Torokhov <dmitry.torokhov@gmail.com> | 2020-07-16 03:31:46 +0300 |
commit | 606e7022078410ce4456e760e80f5e4b68c63476 (patch) | |
tree | bf127366bc6f050c32d63f813c5f02164cb4cb86 /drivers/input/input-mt.c | |
parent | 6f49c4f5b95b9ac8ead1ec39066489fb10fcbde8 (diff) | |
download | linux-606e7022078410ce4456e760e80f5e4b68c63476.tar.xz |
Input: mt - cleanup open-coded __set_bit()
Replace open-coded __set_bit() with the function.
Signed-off-by: Michał Mirosław <mirq-linux@rere.qmqm.pl>
Link: https://lore.kernel.org/r/cf1dda3a372896cb01033ce084a7deb9620df7aa.1594599118.git.mirq-linux@rere.qmqm.pl
Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
Diffstat (limited to 'drivers/input/input-mt.c')
-rw-r--r-- | drivers/input/input-mt.c | 2 |
1 files changed, 1 insertions, 1 deletions
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); } } |