aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/hid.h
diff options
context:
space:
mode:
authorBruno Prémont <bonbons@linux-vserver.org>2010-04-25 15:40:03 -0400
committerJiri Kosina <jkosina@suse.cz>2010-04-27 09:22:00 -0400
commit6a740aa4f47b9f29bad5292cf51f008f3edad9b1 (patch)
tree179e1388bfb21bf17a93c045c29141d8bdc192b4 /include/linux/hid.h
parentab195c58b864802c15e494f06ae109413e12d50b (diff)
HID: add suspend/resume hooks for hid drivers
Add suspend/resume hooks for HID drivers so these can do some additional state adjustment when device gets suspended/resumed. Signed-off-by: Bruno Prémont <bonbons@linux-vserver.org> Signed-off-by: Jiri Kosina <jkosina@suse.cz>
Diffstat (limited to 'include/linux/hid.h')
-rw-r--r--include/linux/hid.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/include/linux/hid.h b/include/linux/hid.h
index b1344ec4b7fc..069e587ae8e6 100644
--- a/include/linux/hid.h
+++ b/include/linux/hid.h
@@ -589,6 +589,9 @@ struct hid_usage_id {
589 * @report_fixup: called before report descriptor parsing (NULL means nop) 589 * @report_fixup: called before report descriptor parsing (NULL means nop)
590 * @input_mapping: invoked on input registering before mapping an usage 590 * @input_mapping: invoked on input registering before mapping an usage
591 * @input_mapped: invoked on input registering after mapping an usage 591 * @input_mapped: invoked on input registering after mapping an usage
592 * @suspend: invoked on suspend (NULL means nop)
593 * @resume: invoked on resume if device was not reset (NULL means nop)
594 * @reset_resume: invoked on resume if device was reset (NULL means nop)
592 * 595 *
593 * raw_event and event should return 0 on no action performed, 1 when no 596 * raw_event and event should return 0 on no action performed, 1 when no
594 * further processing should be done and negative on error 597 * further processing should be done and negative on error
@@ -629,6 +632,11 @@ struct hid_driver {
629 int (*input_mapped)(struct hid_device *hdev, 632 int (*input_mapped)(struct hid_device *hdev,
630 struct hid_input *hidinput, struct hid_field *field, 633 struct hid_input *hidinput, struct hid_field *field,
631 struct hid_usage *usage, unsigned long **bit, int *max); 634 struct hid_usage *usage, unsigned long **bit, int *max);
635#ifdef CONFIG_PM
636 int (*suspend)(struct hid_device *hdev, pm_message_t message);
637 int (*resume)(struct hid_device *hdev);
638 int (*reset_resume)(struct hid_device *hdev);
639#endif
632/* private: */ 640/* private: */
633 struct device_driver driver; 641 struct device_driver driver;
634}; 642};