[PATCH] HID: Fix the bit shift number for LED_KANA.

junan posted 1 patch 1 year, 2 months ago
drivers/hid/usbhid/usbkbd.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
[PATCH] HID: Fix the bit shift number for LED_KANA.
Posted by junan 1 year, 2 months ago
Since "LED_KANA" was defined as "0x04", the shift number should be "4".

Signed-off-by: junan <junan76@163.com>
---
 drivers/hid/usbhid/usbkbd.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/hid/usbhid/usbkbd.c b/drivers/hid/usbhid/usbkbd.c
index c439ed2f16db..af6bc76dbf64 100644
--- a/drivers/hid/usbhid/usbkbd.c
+++ b/drivers/hid/usbhid/usbkbd.c
@@ -160,7 +160,7 @@ static int usb_kbd_event(struct input_dev *dev, unsigned int type,
 		return -1;
 
 	spin_lock_irqsave(&kbd->leds_lock, flags);
-	kbd->newleds = (!!test_bit(LED_KANA,    dev->led) << 3) | (!!test_bit(LED_COMPOSE, dev->led) << 3) |
+	kbd->newleds = (!!test_bit(LED_KANA,    dev->led) << 4) | (!!test_bit(LED_COMPOSE, dev->led) << 3) |
 		       (!!test_bit(LED_SCROLLL, dev->led) << 2) | (!!test_bit(LED_CAPSL,   dev->led) << 1) |
 		       (!!test_bit(LED_NUML,    dev->led));
 
-- 
2.43.0
Re: [PATCH] HID: Fix the bit shift number for LED_KANA.
Posted by Jiri Kosina 1 year ago
On Thu, 28 Nov 2024, junan wrote:

> Since "LED_KANA" was defined as "0x04", the shift number should be "4".

Heh, this bug has been there for _*AGES*_, and it's a pretty obscure 
driver anyway. Let's fix it though, thanks. Applied.

-- 
Jiri Kosina
SUSE Labs