diff options
author | 2023-08-15 13:19:59 -0700 | |
---|---|---|
committer | 2023-08-16 15:20:59 +0200 | |
commit | c4444d8749f696384947192b602718fa310c1caf (patch) | |
tree | 3513f40b5080fb5538a163670bb0a99c381eb323 | |
parent | HID: input: Fix Apple Magic Trackpad 1 Bluetooth disconnect (diff) | |
download | wireguard-linux-c4444d8749f696384947192b602718fa310c1caf.tar.xz wireguard-linux-c4444d8749f696384947192b602718fa310c1caf.zip |
HID: apple: Add "Hailuck" to the list of non-apple keyboards
Powzan keyboards KB750 and KB770 identify as
"Hailuck Co.,Ltd USB Keyboard". Adding "Hailuck" to the list
of non-apple keyboards fixes function keys for these models.
Signed-off-by: Nils Tonnaett <ntonnatt@ccrma.stanford.edu>
Reviewed-by: Rahul Rameshbabu <sergeantsagara@protonmail.com
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
-rw-r--r-- | drivers/hid/hid-apple.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/hid/hid-apple.c b/drivers/hid/hid-apple.c index d7b932925730..3ca45975c686 100644 --- a/drivers/hid/hid-apple.c +++ b/drivers/hid/hid-apple.c @@ -343,7 +343,8 @@ static const struct apple_non_apple_keyboard non_apple_keyboards[] = { { "SONiX USB DEVICE" }, { "Keychron" }, { "AONE" }, - { "GANSS" } + { "GANSS" }, + { "Hailuck" }, }; static bool apple_is_non_apple_keyboard(struct hid_device *hdev) |