* [PATCH] Input: atkbd - skip deactivate for HONOR NWB-G's internal keyboard
@ 2026-09-01 14:03 Tao juncheng
2026-09-02 14:20 ` Tao juncheng
0 siblings, 1 reply; 2+ messages in thread
From: Tao juncheng @ 2026-09-01 14:03 UTC (permalink / raw)
To: linux-input; +Cc: dmitry.torokhov, stable, linux-kernel, Tao juncheng, stable
After commit 9cf6e24c9fbf17e52de9fff07f12be7565ea6d61 ("Input: atkbd -
do not skip atkbd_deactivate() when skipping ATKBD_CMD_GETID"), HONOR
NWB-G, aka HONOR WIN Gaming H7's internal keyboard stops
working. Adding the atkbd_deactivate_fixup quirk fixes it.
DMI: HONOR NWB-G/NWB-G-PCB, BIOS 1.10
Fixes: 9cf6e24c9fbf17e52de9fff07f12be7565ea6d61 ("Input: atkbd - do not skip atkbd_deactivate() when skipping ATKBD_CMD_GETID")
Cc: stable@kernel.org
Tested-by: Tao juncheng <tjc1437@gmail.com>
Signed-off-by: Tao juncheng <tjc1437@gmail.com>
---
drivers/input/keyboard/atkbd.c | 8 ++++++++
1 file changed, 8 insertions(+)
diff --git a/drivers/input/keyboard/atkbd.c b/drivers/input/keyboard/atkbd.c
index c8ad55f26ea8..de8edab3cb0f 100644
--- a/drivers/input/keyboard/atkbd.c
+++ b/drivers/input/keyboard/atkbd.c
@@ -1923,6 +1923,14 @@ static const struct dmi_system_id atkbd_dmi_quirk_table[] __initconst = {
},
.callback = atkbd_deactivate_fixup,
},
+ {
+ /* HONOR WIN Gaming H7 */
+ .matches = {
+ DMI_MATCH(DMI_SYS_VENDOR, "HONOR"),
+ DMI_MATCH(DMI_PRODUCT_NAME, "NWB-G"),
+ },
+ .callback = atkbd_deactivate_fixup,
+ },
{ }
};
--
2.47.0
^ permalink raw reply related [flat|nested] 2+ messages in thread
end of thread, other threads:[~2026-09-02 14:22 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-09-01 14:03 [PATCH] Input: atkbd - skip deactivate for HONOR NWB-G's internal keyboard Tao juncheng
2026-09-02 14:20 ` Tao juncheng
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox