public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* Re: [PATCH 1/1] Drivers: hid: hid-hyperv: Implement a stub raw_request() entry point
  2014-03-29  0:41 [PATCH 1/1] Drivers: hid: hid-hyperv: Implement a stub raw_request() entry point K. Y. Srinivasan
@ 2014-03-29  0:05 ` Benjamin Tissoires
  2014-03-29  1:42 ` Jiri Kosina
  1 sibling, 0 replies; 4+ messages in thread
From: Benjamin Tissoires @ 2014-03-29  0:05 UTC (permalink / raw)
  To: K. Y. Srinivasan
  Cc: gregkh, linux-kernel, devel, ohering, jkosina, dh.herrmann

On Mar 28 2014 or thereabouts, K. Y. Srinivasan wrote:
> commit 3c86726cfe38952f0366f86acfbbb025813ec1c2
> Author: Benjamin Tissoires <benjamin.tissoires@redhat.com>
> Date:   Thu Feb 20 15:24:49 2014 -0500
> 
>     HID: make .raw_request mandatory
> 
>     SET_REPORT and GET_REPORT are mandatory in the HID specification.
>     Make the corresponding API in hid-core mandatory too, which removes the
>     need to test against it in some various places.
> 
>     Signed-off-by: Benjamin Tissoires <benjamin.tissoires@redhat.com>
>     Reviewed-by: David Herrmann <dh.herrmann@gmail.com>
>     Signed-off-by: Jiri Kosina <jkosina@suse.cz>
> 
> Made .raw_request mandatory and broke the Hyper-V mouse driver. This patch
> fixes the problem.
> 
> Signed-off-by: K. Y. Srinivasan <kys@microsoft.com>
> ---
>

Reviewed-by: Benjamin Tissoires <benjamin.tissoires@redhat.com>

Thanks for spotting and fixing this K. Y.

Cheers,
Benjamin

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [PATCH 1/1] Drivers: hid: hid-hyperv: Implement a stub  raw_request() entry point
@ 2014-03-29  0:41 K. Y. Srinivasan
  2014-03-29  0:05 ` Benjamin Tissoires
  2014-03-29  1:42 ` Jiri Kosina
  0 siblings, 2 replies; 4+ messages in thread
From: K. Y. Srinivasan @ 2014-03-29  0:41 UTC (permalink / raw)
  To: gregkh, linux-kernel, devel, ohering, jkosina, benjamin.tissoires,
	dh.herrmann
  Cc: K. Y. Srinivasan

commit 3c86726cfe38952f0366f86acfbbb025813ec1c2
Author: Benjamin Tissoires <benjamin.tissoires@redhat.com>
Date:   Thu Feb 20 15:24:49 2014 -0500

    HID: make .raw_request mandatory

    SET_REPORT and GET_REPORT are mandatory in the HID specification.
    Make the corresponding API in hid-core mandatory too, which removes the
    need to test against it in some various places.

    Signed-off-by: Benjamin Tissoires <benjamin.tissoires@redhat.com>
    Reviewed-by: David Herrmann <dh.herrmann@gmail.com>
    Signed-off-by: Jiri Kosina <jkosina@suse.cz>

Made .raw_request mandatory and broke the Hyper-V mouse driver. This patch
fixes the problem.

Signed-off-by: K. Y. Srinivasan <kys@microsoft.com>
---
 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 c24908f..89a9234 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)
 {
 }
 
+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;
-- 
1.7.4.1


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH 1/1] Drivers: hid: hid-hyperv: Implement a stub  raw_request() entry point
  2014-03-29  0:41 [PATCH 1/1] Drivers: hid: hid-hyperv: Implement a stub raw_request() entry point K. Y. Srinivasan
  2014-03-29  0:05 ` Benjamin Tissoires
@ 2014-03-29  1:42 ` Jiri Kosina
  2014-03-29  5:05   ` KY Srinivasan
  1 sibling, 1 reply; 4+ messages in thread
From: Jiri Kosina @ 2014-03-29  1:42 UTC (permalink / raw)
  To: K. Y. Srinivasan
  Cc: gregkh, linux-kernel, devel, ohering, benjamin.tissoires,
	dh.herrmann

On Fri, 28 Mar 2014, K. Y. Srinivasan wrote:

> commit 3c86726cfe38952f0366f86acfbbb025813ec1c2
> Author: Benjamin Tissoires <benjamin.tissoires@redhat.com>
> Date:   Thu Feb 20 15:24:49 2014 -0500
> 
>     HID: make .raw_request mandatory
> 
>     SET_REPORT and GET_REPORT are mandatory in the HID specification.
>     Make the corresponding API in hid-core mandatory too, which removes the
>     need to test against it in some various places.
> 
>     Signed-off-by: Benjamin Tissoires <benjamin.tissoires@redhat.com>
>     Reviewed-by: David Herrmann <dh.herrmann@gmail.com>
>     Signed-off-by: Jiri Kosina <jkosina@suse.cz>
> 
> Made .raw_request mandatory and broke the Hyper-V mouse driver. This patch
> fixes the problem.
> 
> Signed-off-by: K. Y. Srinivasan <kys@microsoft.com>
> ---
>  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 c24908f..89a9234 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)
>  {
>  }
>  
> +static int mousevsc_hid_raw_request(struct hid_device *hid,
> +				    unsigned char report_num,
> +				    __u8 buf, size_t len,

This should be __u8 *buf. I have fixed that and applied.

-- 
Jiri Kosina
SUSE Labs

^ permalink raw reply	[flat|nested] 4+ messages in thread

* RE: [PATCH 1/1] Drivers: hid: hid-hyperv: Implement a stub raw_request() entry point
  2014-03-29  1:42 ` Jiri Kosina
@ 2014-03-29  5:05   ` KY Srinivasan
  0 siblings, 0 replies; 4+ messages in thread
From: KY Srinivasan @ 2014-03-29  5:05 UTC (permalink / raw)
  To: Jiri Kosina
  Cc: gregkh@suse.de, linux-kernel@vger.kernel.org,
	devel@linuxdriverproject.org, ohering@suse.com,
	benjamin.tissoires@redhat.com, dh.herrmann@gmail.com


> -----Original Message-----
> From: Jiri Kosina [mailto:jkosina@suse.cz]
> Sent: Friday, March 28, 2014 6:43 PM
> To: KY Srinivasan
> Cc: gregkh@suse.de; linux-kernel@vger.kernel.org;
> devel@linuxdriverproject.org; ohering@suse.com;
> benjamin.tissoires@redhat.com; dh.herrmann@gmail.com
> Subject: Re: [PATCH 1/1] Drivers: hid: hid-hyperv: Implement a stub
> raw_request() entry point
> 
> On Fri, 28 Mar 2014, K. Y. Srinivasan wrote:
> 
> > commit 3c86726cfe38952f0366f86acfbbb025813ec1c2
> > Author: Benjamin Tissoires <benjamin.tissoires@redhat.com>
> > Date:   Thu Feb 20 15:24:49 2014 -0500
> >
> >     HID: make .raw_request mandatory
> >
> >     SET_REPORT and GET_REPORT are mandatory in the HID specification.
> >     Make the corresponding API in hid-core mandatory too, which removes
> the
> >     need to test against it in some various places.
> >
> >     Signed-off-by: Benjamin Tissoires <benjamin.tissoires@redhat.com>
> >     Reviewed-by: David Herrmann <dh.herrmann@gmail.com>
> >     Signed-off-by: Jiri Kosina <jkosina@suse.cz>
> >
> > Made .raw_request mandatory and broke the Hyper-V mouse driver. This
> > patch fixes the problem.
> >
> > Signed-off-by: K. Y. Srinivasan <kys@microsoft.com>
> > ---
> >  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
> > c24908f..89a9234 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)  {  }
> >
> > +static int mousevsc_hid_raw_request(struct hid_device *hid,
> > +				    unsigned char report_num,
> > +				    __u8 buf, size_t len,
> 
> This should be __u8 *buf. I have fixed that and applied.

Thanks Jiri,

K. Y
> 
> --
> Jiri Kosina
> SUSE Labs

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2014-03-29  5:05 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-03-29  0:41 [PATCH 1/1] Drivers: hid: hid-hyperv: Implement a stub raw_request() entry point K. Y. Srinivasan
2014-03-29  0:05 ` Benjamin Tissoires
2014-03-29  1:42 ` Jiri Kosina
2014-03-29  5:05   ` KY Srinivasan

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox