diff mbox series

[2/2] Sync Fn-lock state on button press for Compact and TrackPoint II keyboards

Message ID 20211017083246.977096-2-iam@valdikss.org.ru (mailing list archive)
State Mainlined
Commit a0a5c2a696990520eba366fae67573306641b93b
Delegated to: Jiri Kosina
Headers show
Series [1/2] Add support for ThinkPad TrackPoint Keyboard II | expand

Commit Message

ValdikSS Oct. 17, 2021, 8:32 a.m. UTC
When Fn-Esc is pressed on the keyboard, it emits the scancode which could
be used to sync the fn_lock sysfs state.
Previously fn_lock only allowed to set new Fn-lock state.

Signed-off-by: ValdikSS <iam@valdikss.org.ru>
---
 drivers/hid/hid-lenovo.c | 9 +++++++++
 1 file changed, 9 insertions(+)
diff mbox series

Patch

diff --git a/drivers/hid/hid-lenovo.c b/drivers/hid/hid-lenovo.c
index 498246cab..62561fb9f 100644
--- a/drivers/hid/hid-lenovo.c
+++ b/drivers/hid/hid-lenovo.c
@@ -695,6 +695,15 @@  static int lenovo_event_cptkbd(struct hid_device *hdev,
 		return 1;
 	}
 
+	if (usage->type == EV_KEY && usage->code == KEY_FN_ESC && value == 1) {
+		/*
+		 * The user has toggled the Fn-lock state. Toggle our own
+		 * cached value of it and sync our value to the keyboard to
+		 * ensure things are in sync (the syncing should be a no-op).
+		 */
+		cptkbd_data->fn_lock = !cptkbd_data->fn_lock;
+	}
+
 	return 0;
 }