aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorJiri Kosina <jkosina@suse.cz>2014-04-01 12:56:24 -0400
committerJiri Kosina <jkosina@suse.cz>2014-04-01 12:56:24 -0400
commitee5f68e6c2f183e6aade0e9c57af13d5eff44f2f (patch)
treede4132918ec7b033c4981e2ba4aea9027816bdb9 /include
parentf74346a04b79c9a5e50a2ee5e923b94195975d17 (diff)
parent0a7f364e812285246cd617a51194a3f8bd0e8daa (diff)
Merge branch 'for-3.15/ll-driver-new-callbacks' into for-linus
Diffstat (limited to 'include')
-rw-r--r--include/linux/hid.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/include/linux/hid.h b/include/linux/hid.h
index 31b9d299ef6c..003cc8e89831 100644
--- a/include/linux/hid.h
+++ b/include/linux/hid.h
@@ -700,8 +700,14 @@ struct hid_ll_driver {
700 struct hid_report *report, int reqtype); 700 struct hid_report *report, int reqtype);
701 701
702 int (*wait)(struct hid_device *hdev); 702 int (*wait)(struct hid_device *hdev);
703 int (*idle)(struct hid_device *hdev, int report, int idle, int reqtype);
704 703
704 int (*raw_request) (struct hid_device *hdev, unsigned char reportnum,
705 __u8 *buf, size_t len, unsigned char rtype,
706 int reqtype);
707
708 int (*output_report) (struct hid_device *hdev, __u8 *buf, size_t len);
709
710 int (*idle)(struct hid_device *hdev, int report, int idle, int reqtype);
705}; 711};
706 712
707#define PM_HINT_FULLON 1<<5 713#define PM_HINT_FULLON 1<<5