diff options
author | Jiri Kosina <jkosina@suse.cz> | 2014-04-01 18:45:27 +0200 |
---|---|---|
committer | Jiri Kosina <jkosina@suse.cz> | 2014-04-01 18:45:27 +0200 |
commit | b95dd3ca034a044471242fcbc8b8256f272b5062 (patch) | |
tree | 32a59028a1823e89214fce3149e80d65a0dda778 /drivers/hid/hid-hyperv.c | |
parent | 2078b9bb240ea31ff3ea715881d1ec03d83e6de4 (diff) | |
parent | c3d77fab51f40821de91a744e4b514e9e4e76a7c (diff) | |
download | talos-op-linux-b95dd3ca034a044471242fcbc8b8256f272b5062.tar.gz talos-op-linux-b95dd3ca034a044471242fcbc8b8256f272b5062.zip |
Merge branch 'for-3.15/hid-core-ll-transport-cleanup' into for-3.15/sony
Diffstat (limited to 'drivers/hid/hid-hyperv.c')
-rw-r--r-- | drivers/hid/hid-hyperv.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/drivers/hid/hid-hyperv.c b/drivers/hid/hid-hyperv.c index 8fae6d1414cc..0658cc4578fe 100644 --- a/drivers/hid/hid-hyperv.c +++ b/drivers/hid/hid-hyperv.c @@ -455,12 +455,22 @@ static void mousevsc_hid_stop(struct hid_device *hid) { } +static int mousevsc_hid_raw_request(struct hid_device *hid, + unsigned char report_num, + __u8 *buf, size_t len, + unsigned char rtype, + int reqtype) +{ + return 0; +} + static struct hid_ll_driver mousevsc_ll_driver = { .parse = mousevsc_hid_parse, .open = mousevsc_hid_open, .close = mousevsc_hid_close, .start = mousevsc_hid_start, .stop = mousevsc_hid_stop, + .raw_request = mousevsc_hid_raw_request, }; static struct hid_driver mousevsc_hid_driver; |