Commit 7f52ece2 authored by José Expósito's avatar José Expósito Committed by Jiri Kosina

HID: apple: Use BIT to define quirks

Replace the existing quirk hardcoded values with the BIT macro in order
to simplify including new quirks.
Signed-off-by: default avatarJosé Expósito <jose.exposito89@gmail.com>
Signed-off-by: default avatarJiri Kosina <jkosina@suse.cz>
parent a5fe7864
...@@ -21,15 +21,15 @@ ...@@ -21,15 +21,15 @@
#include "hid-ids.h" #include "hid-ids.h"
#define APPLE_RDESC_JIS 0x0001 #define APPLE_RDESC_JIS BIT(0)
#define APPLE_IGNORE_MOUSE 0x0002 #define APPLE_IGNORE_MOUSE BIT(1)
#define APPLE_HAS_FN 0x0004 #define APPLE_HAS_FN BIT(2)
/* 0x0008 reserved, was: APPLE_HIDDEV */ /* BIT(3) reserved, was: APPLE_HIDDEV */
#define APPLE_ISO_TILDE_QUIRK 0x0010 #define APPLE_ISO_TILDE_QUIRK BIT(4)
#define APPLE_MIGHTYMOUSE 0x0020 #define APPLE_MIGHTYMOUSE BIT(5)
#define APPLE_INVERT_HWHEEL 0x0040 #define APPLE_INVERT_HWHEEL BIT(6)
/* 0x0080 reserved, was: APPLE_IGNORE_HIDINPUT */ /* BIT(7) reserved, was: APPLE_IGNORE_HIDINPUT */
#define APPLE_NUMLOCK_EMULATION 0x0100 #define APPLE_NUMLOCK_EMULATION BIT(8)
#define APPLE_FLAG_FKEY 0x01 #define APPLE_FLAG_FKEY 0x01
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment