From: Dmitry Torokhov <dmitry.torokhov@gmail.com>
To: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Cc: linux-input@vger.kernel.org, linux-kernel@vger.kernel.or,
"Pierre-Loup A. Griffais" <pgriffais@valvesoftware.com>
Subject: Re: [PATCH] Input: xpad: use proper endpoint type
Date: Tue, 25 Nov 2014 00:38:48 -0800 [thread overview]
Message-ID: <20141125083848.GA14519@dtor-ws> (raw)
In-Reply-To: <20141124020323.GA5651@kroah.com>
On Sun, Nov 23, 2014 at 06:03:23PM -0800, Greg Kroah-Hartman wrote:
> The xpad wireless endpoint is not a bulk endpoint on my devices, but
> rather an interrupt one, so the USB core complains when it is submitted.
> I'm guessing that the author really did mean that this should be an
> interrupt urb, but as there are a zillion different xpad devices out
> there, let's cover out bases and handle both bulk and interrupt
> endpoints just as easily.
>
> Signed-off-by: "Pierre-Loup A. Griffais" <pgriffais@valvesoftware.com>
> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
> Cc: stable <stable@vger.kernel.org>
Applied, thank you.
> ---
>
> This has been in my local tree since January, don't know why it never
> got pushed out, sorry for the delay. Valve has been using a version of
> this patch for a year now.
>
> drivers/input/joystick/xpad.c | 16 +++++++++++++---
> 1 file changed, 13 insertions(+), 3 deletions(-)
>
> --- a/drivers/input/joystick/xpad.c
> +++ b/drivers/input/joystick/xpad.c
> @@ -1179,9 +1179,19 @@ static int xpad_probe(struct usb_interfa
> }
>
> ep_irq_in = &intf->cur_altsetting->endpoint[1].desc;
> - usb_fill_bulk_urb(xpad->bulk_out, udev,
> - usb_sndbulkpipe(udev, ep_irq_in->bEndpointAddress),
> - xpad->bdata, XPAD_PKT_LEN, xpad_bulk_out, xpad);
> + if (usb_endpoint_is_bulk_out(ep_irq_in)) {
> + usb_fill_bulk_urb(xpad->bulk_out, udev,
> + usb_sndbulkpipe(udev,
> + ep_irq_in->bEndpointAddress),
> + xpad->bdata, XPAD_PKT_LEN,
> + xpad_bulk_out, xpad);
> + } else {
> + usb_fill_int_urb(xpad->bulk_out, udev,
> + usb_sndintpipe(udev,
> + ep_irq_in->bEndpointAddress),
> + xpad->bdata, XPAD_PKT_LEN,
> + xpad_bulk_out, xpad, 0);
> + }
>
> /*
> * Submit the int URB immediately rather than waiting for open
--
Dmitry
prev parent reply other threads:[~2014-11-25 8:38 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-11-24 2:03 [PATCH] Input: xpad: use proper endpoint type Greg Kroah-Hartman
2014-11-25 8:38 ` Dmitry Torokhov [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20141125083848.GA14519@dtor-ws \
--to=dmitry.torokhov@gmail.com \
--cc=gregkh@linuxfoundation.org \
--cc=linux-input@vger.kernel.org \
--cc=linux-kernel@vger.kernel.or \
--cc=pgriffais@valvesoftware.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).