diff options
Diffstat (limited to 'include/linux/hid.h')
-rw-r--r-- | include/linux/hid.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/linux/hid.h b/include/linux/hid.h index 898103b401f1..0ac2b5260b26 100644 --- a/include/linux/hid.h +++ b/include/linux/hid.h | |||
@@ -403,6 +403,7 @@ struct hid_control_fifo { | |||
403 | 403 | ||
404 | #define HID_CLAIMED_INPUT 1 | 404 | #define HID_CLAIMED_INPUT 1 |
405 | #define HID_CLAIMED_HIDDEV 2 | 405 | #define HID_CLAIMED_HIDDEV 2 |
406 | #define HID_CLAIMED_HIDRAW 4 | ||
406 | 407 | ||
407 | #define HID_CTRL_RUNNING 1 | 408 | #define HID_CTRL_RUNNING 1 |
408 | #define HID_OUT_RUNNING 2 | 409 | #define HID_OUT_RUNNING 2 |
@@ -438,6 +439,7 @@ struct hid_device { /* device report descriptor */ | |||
438 | 439 | ||
439 | struct list_head inputs; /* The list of inputs */ | 440 | struct list_head inputs; /* The list of inputs */ |
440 | void *hiddev; /* The hiddev structure */ | 441 | void *hiddev; /* The hiddev structure */ |
442 | void *hidraw; | ||
441 | int minor; /* Hiddev minor number */ | 443 | int minor; /* Hiddev minor number */ |
442 | 444 | ||
443 | wait_queue_head_t wait; /* For sleeping */ | 445 | wait_queue_head_t wait; /* For sleeping */ |
@@ -458,6 +460,9 @@ struct hid_device { /* device report descriptor */ | |||
458 | void (*hiddev_hid_event) (struct hid_device *, struct hid_field *field, | 460 | void (*hiddev_hid_event) (struct hid_device *, struct hid_field *field, |
459 | struct hid_usage *, __s32); | 461 | struct hid_usage *, __s32); |
460 | void (*hiddev_report_event) (struct hid_device *, struct hid_report *); | 462 | void (*hiddev_report_event) (struct hid_device *, struct hid_report *); |
463 | |||
464 | /* handler for raw output data, used by hidraw */ | ||
465 | int (*hid_output_raw_report) (struct hid_device *, __u8 *, size_t); | ||
461 | #ifdef CONFIG_USB_HIDINPUT_POWERBOOK | 466 | #ifdef CONFIG_USB_HIDINPUT_POWERBOOK |
462 | unsigned long pb_pressed_fn[NBITS(KEY_MAX)]; | 467 | unsigned long pb_pressed_fn[NBITS(KEY_MAX)]; |
463 | unsigned long pb_pressed_numlock[NBITS(KEY_MAX)]; | 468 | unsigned long pb_pressed_numlock[NBITS(KEY_MAX)]; |