mirror of
https://github.com/Ysurac/openmptcprouter.git
synced 2025-03-09 15:40:20 +00:00
28 lines
975 B
Diff
28 lines
975 B
Diff
From dceb771df6eabca41880cdc721b8b55a0bab226e Mon Sep 17 00:00:00 2001
|
|
From: Dave Stevenson <dave.stevenson@raspberrypi.com>
|
|
Date: Fri, 20 Sep 2024 16:16:02 +0100
|
|
Subject: [PATCH 072/697] Input: sensehat-joystick : Revert to downstream
|
|
keymap
|
|
|
|
Upstream chose to use BTN_DPAD_* and BTN_SELECT, whilst downstream
|
|
had used KEY_*.
|
|
|
|
Revert to the downstream map to avoid any regressions.
|
|
(Ideally this would be read from DT)
|
|
|
|
Signed-off-by: Dave Stevenson <dave.stevenson@raspberrypi.com>
|
|
---
|
|
drivers/input/joystick/sensehat-joystick.c | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
--- a/drivers/input/joystick/sensehat-joystick.c
|
|
+++ b/drivers/input/joystick/sensehat-joystick.c
|
|
@@ -28,7 +28,7 @@ struct sensehat_joystick {
|
|
};
|
|
|
|
static const unsigned int keymap[] = {
|
|
- BTN_DPAD_DOWN, BTN_DPAD_RIGHT, BTN_DPAD_UP, BTN_SELECT, BTN_DPAD_LEFT,
|
|
+ KEY_DOWN, KEY_RIGHT, KEY_UP, KEY_ENTER, KEY_LEFT
|
|
};
|
|
|
|
static irqreturn_t sensehat_joystick_report(int irq, void *cookie)
|