[PATCH] Input: atkbd - skip deactivate for HONOR NWB-G's internal keyboard

From: Tao juncheng

Date: Tue Sep 01 2026 - 12:07:32 EST


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@xxxxxxxxxx
Tested-by: Tao juncheng <tjc1437@xxxxxxxxx>
Signed-off-by: Tao juncheng <tjc1437@xxxxxxxxx>
---
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