diff options
author | Benjamin Tissoires <bentiss@kernel.org> | 2023-08-31 10:38:03 +0200 |
---|---|---|
committer | Benjamin Tissoires <bentiss@kernel.org> | 2023-08-31 10:38:03 +0200 |
commit | 7d4de0d252eb916ec917d3755060934c2176d9d0 (patch) | |
tree | 0bf669c30439661599dbb7708fe739ff5c676d79 /include | |
parent | 1ba893a112eb042147b0b4072912bb4f4c5b42d2 (diff) | |
parent | 2326dee41c01c8d31574a62045fb1c5f242885f0 (diff) |
Merge branch 'for-6.6/doc' into for-linus
Some docs explaining how HID works by Marco Morandini
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/hid.h | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/include/linux/hid.h b/include/linux/hid.h index be9e16cb8bd1..964ca1f15e3f 100644 --- a/include/linux/hid.h +++ b/include/linux/hid.h @@ -341,6 +341,29 @@ struct hid_item { */ #define MAX_USBHID_BOOT_QUIRKS 4 +/** + * DOC: HID quirks + * | @HID_QUIRK_NOTOUCH: + * | @HID_QUIRK_IGNORE: ignore this device + * | @HID_QUIRK_NOGET: + * | @HID_QUIRK_HIDDEV_FORCE: + * | @HID_QUIRK_BADPAD: + * | @HID_QUIRK_MULTI_INPUT: + * | @HID_QUIRK_HIDINPUT_FORCE: + * | @HID_QUIRK_ALWAYS_POLL: + * | @HID_QUIRK_INPUT_PER_APP: + * | @HID_QUIRK_X_INVERT: + * | @HID_QUIRK_Y_INVERT: + * | @HID_QUIRK_SKIP_OUTPUT_REPORTS: + * | @HID_QUIRK_SKIP_OUTPUT_REPORT_ID: + * | @HID_QUIRK_NO_OUTPUT_REPORTS_ON_INTR_EP: + * | @HID_QUIRK_HAVE_SPECIAL_DRIVER: + * | @HID_QUIRK_INCREMENT_USAGE_ON_DUPLICATE: + * | @HID_QUIRK_FULLSPEED_INTERVAL: + * | @HID_QUIRK_NO_INIT_REPORTS: + * | @HID_QUIRK_NO_IGNORE: + * | @HID_QUIRK_NO_INPUT_SYNC: + */ /* BIT(0) reserved for backward compatibility, was HID_QUIRK_INVERT */ #define HID_QUIRK_NOTOUCH BIT(1) #define HID_QUIRK_IGNORE BIT(2) |