Skip to content

Commit 20d3ae7

Browse files
Cryolitiaopsiff
authored andcommitted
FROMLIST: Input: atkbd - skip deactivate for HONOR FMB-P's internal keyboard
maillist inclusion from maillist category: bugfix After commit 9cf6e24 ("Input: atkbd - do not skip atkbd_deactivate() when skipping ATKBD_CMD_GETID"), HONOR FMB-P, aka HONOR MagicBook Pro 14 2025's internal keyboard stops working. Adding the atkbd_deactivate_fixup quirk fixes it. DMI: HONOR FMB-P/FMB-P-PCB, BIOS 1.13 05/08/2025 Fixes: 9cf6e24 ("Input: atkbd - do not skip atkbd_deactivate() when skipping ATKBD_CMD_GETID") Reported-by: Mikura Kyouka <mikurakyouka@aosc.io> Link: https://www.xiaohongshu.com/explore/68738d0a0000000012015a79 Link: https://club.honor.com/cn/thread-29463529-1-1.html Link: https://club.honor.com/cn/thread-29490444-1-1.html Reported-by: foad.elkhattabi <foad.elkhattabi@gmail.com> Link: https://bugzilla.kernel.org/show_bug.cgi?id=220384 Signed-off-by: Cryolitia PukNgae <cryolitia.pukngae@linux.dev> Link:https://lore.kernel.org/all/20251022-honor-v1-1-ff894ed271a9@linux.dev/ Signed-off-by: Wentao Guan <guanwentao@uniontech.com>
1 parent 0db1b09 commit 20d3ae7

1 file changed

Lines changed: 7 additions & 0 deletions

File tree

drivers/input/keyboard/atkbd.c

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1958,6 +1958,13 @@ static const struct dmi_system_id atkbd_dmi_quirk_table[] __initconst = {
19581958
},
19591959
.callback = atkbd_deactivate_fixup,
19601960
},
1961+
{
1962+
.matches = {
1963+
DMI_MATCH(DMI_SYS_VENDOR, "HONOR"),
1964+
DMI_MATCH(DMI_PRODUCT_NAME, "FMB-P"),
1965+
},
1966+
.callback = atkbd_deactivate_fixup,
1967+
},
19611968
{ }
19621969
};
19631970

0 commit comments

Comments
 (0)