aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/hid.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/linux/hid.h')
-rw-r--r--include/linux/hid.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/include/linux/hid.h b/include/linux/hid.h
index fa8ee9cef7be..6ac7795a8acc 100644
--- a/include/linux/hid.h
+++ b/include/linux/hid.h
@@ -603,12 +603,17 @@ struct hid_ll_driver {
603 int (*open)(struct hid_device *hdev); 603 int (*open)(struct hid_device *hdev);
604 void (*close)(struct hid_device *hdev); 604 void (*close)(struct hid_device *hdev);
605 605
606 int (*power)(struct hid_device *hdev, int level);
607
606 int (*hidinput_input_event) (struct input_dev *idev, unsigned int type, 608 int (*hidinput_input_event) (struct input_dev *idev, unsigned int type,
607 unsigned int code, int value); 609 unsigned int code, int value);
608 610
609 int (*parse)(struct hid_device *hdev); 611 int (*parse)(struct hid_device *hdev);
610}; 612};
611 613
614#define PM_HINT_FULLON 1<<5
615#define PM_HINT_NORMAL 1<<1
616
612/* Applications from HID Usage Tables 4/8/99 Version 1.1 */ 617/* Applications from HID Usage Tables 4/8/99 Version 1.1 */
613/* We ignore a few input applications that are not widely used */ 618/* We ignore a few input applications that are not widely used */
614#define IS_INPUT_APPLICATION(a) (((a >= 0x00010000) && (a <= 0x00010008)) || (a == 0x00010080) || (a == 0x000c0001) || (a == 0x000d0002)) 619#define IS_INPUT_APPLICATION(a) (((a >= 0x00010000) && (a <= 0x00010008)) || (a == 0x00010080) || (a == 0x000c0001) || (a == 0x000d0002))
@@ -641,6 +646,7 @@ int hidinput_find_field(struct hid_device *hid, unsigned int type, unsigned int
641void hid_output_report(struct hid_report *report, __u8 *data); 646void hid_output_report(struct hid_report *report, __u8 *data);
642struct hid_device *hid_allocate_device(void); 647struct hid_device *hid_allocate_device(void);
643int hid_parse_report(struct hid_device *hid, __u8 *start, unsigned size); 648int hid_parse_report(struct hid_device *hid, __u8 *start, unsigned size);
649int hid_check_keys_pressed(struct hid_device *hid);
644int hid_connect(struct hid_device *hid, unsigned int connect_mask); 650int hid_connect(struct hid_device *hid, unsigned int connect_mask);
645 651
646/** 652/**