diff mbox series

HID: hid-asus: Maps 0x35 to KEY_SCREENLOCK

Message ID 20211018125110.3224-1-angiolucci@gmail.com (mailing list archive)
State New, archived
Delegated to: Jiri Kosina
Headers show
Series HID: hid-asus: Maps 0x35 to KEY_SCREENLOCK | expand

Commit Message

Vinícius Angiolucci Reis Oct. 18, 2021, 12:51 p.m. UTC
Asus laptops are able to turn both the display and keyboard backlit off
by pressing a dedicated "turn display off" key (usually fn+f6). However,
on Linux systems, this key has no effect at all since most desktop
environments don't deal with KEY_DISPLAY_OFF. By mapping that key to
KEY_SCREENLOCK instead, would enable it to work as close as intended by
the manufacturer, since desktop envirorments would handle this as a
screen lock request by the user, locking the screen (and turning both
the display and keyboard backlit off on environments that support it).

Signed-off-by: Vinicius A. Reis <angiolucci@gmail.com>
---
 drivers/hid/hid-asus.c | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/drivers/hid/hid-asus.c b/drivers/hid/hid-asus.c
index f3ecddc519ee..e5c7bfa68cd6 100644
--- a/drivers/hid/hid-asus.c
+++ b/drivers/hid/hid-asus.c
@@ -854,7 +854,9 @@  static int asus_input_mapping(struct hid_device *hdev,
 		switch (usage->hid & HID_USAGE) {
 		case 0x10: asus_map_key_clear(KEY_BRIGHTNESSDOWN);	break;
 		case 0x20: asus_map_key_clear(KEY_BRIGHTNESSUP);		break;
-		case 0x35: asus_map_key_clear(KEY_DISPLAY_OFF);		break;
+		case 0x35:
+			asus_map_key_clear(KEY_SCREENLOCK);
+			break;
 		case 0x6c: asus_map_key_clear(KEY_SLEEP);		break;
 		case 0x7c: asus_map_key_clear(KEY_MICMUTE);		break;
 		case 0x82: asus_map_key_clear(KEY_CAMERA);		break;