diff options
author | José Expósito <jose.exposito89@gmail.com> | 2021-11-18 08:29:53 +0100 |
---|---|---|
committer | Jiri Kosina <jkosina@suse.cz> | 2021-11-19 16:04:02 +0100 |
commit | a5fe7864d8ada170f19cc47d176bf8260ffb4263 (patch) | |
tree | 65238d12187fd7b769f49ed9dff1577c9806ace6 /drivers/hid/hid-apple.c | |
parent | 5af06603c4090617be216a9185193a7be3ca60af (diff) | |
download | linux-a5fe7864d8ada170f19cc47d176bf8260ffb4263.tar.bz2 |
HID: apple: Do not reset quirks when the Fn key is not found
When a keyboard without a function key is detected, instead of removing
all quirks, remove only the APPLE_HAS_FN quirk.
Signed-off-by: José Expósito <jose.exposito89@gmail.com>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
Diffstat (limited to 'drivers/hid/hid-apple.c')
-rw-r--r-- | drivers/hid/hid-apple.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/hid/hid-apple.c b/drivers/hid/hid-apple.c index 2c9c5faa74a9..a4ca5ed00e5f 100644 --- a/drivers/hid/hid-apple.c +++ b/drivers/hid/hid-apple.c @@ -428,7 +428,7 @@ static int apple_input_configured(struct hid_device *hdev, if ((asc->quirks & APPLE_HAS_FN) && !asc->fn_found) { hid_info(hdev, "Fn key not found (Apple Wireless Keyboard clone?), disabling Fn key handling\n"); - asc->quirks = 0; + asc->quirks &= ~APPLE_HAS_FN; } return 0; |