* [PATCH] HID: sony: do not bail out when the sixaxis refuses the output report
@ 2016-01-08 16:58 Benjamin Tissoires
2016-01-18 22:11 ` Jiri Kosina
0 siblings, 1 reply; 2+ messages in thread
From: Benjamin Tissoires @ 2016-01-08 16:58 UTC (permalink / raw)
To: Lauri Kasanen, Jiri Kosina, linux-input; +Cc: Max Fedotov, linux-kernel
When setting the operational mode, some third party (Speedlink Strike-FX)
gamepads refuse the output report. Failing here means we refuse to
initialize the gamepad while this should be harmless.
The weird part is that the initial commit that added this: a7de9b8
("HID: sony: Enable Gasia third-party PS3 controllers") mentions this
very same controller as one requiring this output report.
Anyway, it's broken for one user at least, so let's change it.
We will report an error, but at least the controller should work.
And no, these devices present themselves as legacy Sony controllers
(VID:PID of 054C:0268, as in the official ones) so there are no ways
of discriminating them from the official ones.
https://bugzilla.redhat.com/show_bug.cgi?id=1255325
Reported-and-tested-by: Max Fedotov <thesourcehim@gmail.com>
Signed-off-by: Benjamin Tissoires <benjamin.tissoires@redhat.com>
---
drivers/hid/hid-sony.c | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/drivers/hid/hid-sony.c b/drivers/hid/hid-sony.c
index 9b8db0e..b2d2fae 100644
--- a/drivers/hid/hid-sony.c
+++ b/drivers/hid/hid-sony.c
@@ -1420,8 +1420,10 @@ static int sixaxis_set_operational_usb(struct hid_device *hdev)
}
ret = hid_hw_output_report(hdev, buf, 1);
- if (ret < 0)
- hid_err(hdev, "can't set operational mode: step 3\n");
+ if (ret < 0) {
+ hid_info(hdev, "can't set operational mode: step 3, ignoring\n");
+ ret = 0;
+ }
out:
kfree(buf);
--
2.5.0
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] HID: sony: do not bail out when the sixaxis refuses the output report
2016-01-08 16:58 [PATCH] HID: sony: do not bail out when the sixaxis refuses the output report Benjamin Tissoires
@ 2016-01-18 22:11 ` Jiri Kosina
0 siblings, 0 replies; 2+ messages in thread
From: Jiri Kosina @ 2016-01-18 22:11 UTC (permalink / raw)
To: Benjamin Tissoires; +Cc: Lauri Kasanen, linux-input, Max Fedotov, linux-kernel
On Fri, 8 Jan 2016, Benjamin Tissoires wrote:
> When setting the operational mode, some third party (Speedlink Strike-FX)
> gamepads refuse the output report. Failing here means we refuse to
> initialize the gamepad while this should be harmless.
>
> The weird part is that the initial commit that added this: a7de9b8
> ("HID: sony: Enable Gasia third-party PS3 controllers") mentions this
> very same controller as one requiring this output report.
> Anyway, it's broken for one user at least, so let's change it.
> We will report an error, but at least the controller should work.
>
> And no, these devices present themselves as legacy Sony controllers
> (VID:PID of 054C:0268, as in the official ones) so there are no ways
> of discriminating them from the official ones.
>
> https://bugzilla.redhat.com/show_bug.cgi?id=1255325
>
> Reported-and-tested-by: Max Fedotov <thesourcehim@gmail.com>
> Signed-off-by: Benjamin Tissoires <benjamin.tissoires@redhat.com>
Applied, thanks.
--
Jiri Kosina
SUSE Labs
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2016-01-18 22:11 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-01-08 16:58 [PATCH] HID: sony: do not bail out when the sixaxis refuses the output report Benjamin Tissoires
2016-01-18 22:11 ` Jiri Kosina
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).