diff options
author | Jiri Kosina <jkosina@suse.cz> | 2014-04-01 13:05:09 -0400 |
---|---|---|
committer | Jiri Kosina <jkosina@suse.cz> | 2014-04-01 13:05:09 -0400 |
commit | ad295b6d5739ab24880a31be403bbc8fab62e177 (patch) | |
tree | cd760a18bcfa6e59b8b63fc71e333ba394b1cd9c /drivers/hid/hid-hyperv.c | |
parent | ba04a57b4acd05a764471b2accd02000f6641881 (diff) | |
parent | c3d77fab51f40821de91a744e4b514e9e4e76a7c (diff) |
Merge branch 'for-3.15/hid-core-ll-transport-cleanup' into for-linus
Conflicts:
drivers/hid/hid-ids.h
drivers/hid/hid-sony.c
drivers/hid/i2c-hid/i2c-hid.c
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 c24908f14934..f52dbcb7133b 100644 --- a/drivers/hid/hid-hyperv.c +++ b/drivers/hid/hid-hyperv.c | |||
@@ -460,12 +460,22 @@ static void mousevsc_hid_stop(struct hid_device *hid) | |||
460 | { | 460 | { |
461 | } | 461 | } |
462 | 462 | ||
463 | static int mousevsc_hid_raw_request(struct hid_device *hid, | ||
464 | unsigned char report_num, | ||
465 | __u8 *buf, size_t len, | ||
466 | unsigned char rtype, | ||
467 | int reqtype) | ||
468 | { | ||
469 | return 0; | ||
470 | } | ||
471 | |||
463 | static struct hid_ll_driver mousevsc_ll_driver = { | 472 | static struct hid_ll_driver mousevsc_ll_driver = { |
464 | .parse = mousevsc_hid_parse, | 473 | .parse = mousevsc_hid_parse, |
465 | .open = mousevsc_hid_open, | 474 | .open = mousevsc_hid_open, |
466 | .close = mousevsc_hid_close, | 475 | .close = mousevsc_hid_close, |
467 | .start = mousevsc_hid_start, | 476 | .start = mousevsc_hid_start, |
468 | .stop = mousevsc_hid_stop, | 477 | .stop = mousevsc_hid_stop, |
478 | .raw_request = mousevsc_hid_raw_request, | ||
469 | }; | 479 | }; |
470 | 480 | ||
471 | static struct hid_driver mousevsc_hid_driver; | 481 | static struct hid_driver mousevsc_hid_driver; |