mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 04:18:39 +08:00
HID: sony: Fix SHANWAN PS3 GamePad rumble and led settings support
Rumble support on SHANWAN PS3 gamepad is not working when a user program has asked it to. If a HID Output Reports is sent via Control Channel then it will be discard by gamepad, thus rumble motor and led settings in Output Report are ignored. This patch therefore sends HID Output Report via Interrupt Channel to SHANWAN gamepad instead of Control Channel, fixing rumble motor and led settings. Signed-off-by: Hongye Yuan <outmatch@gmail.com> Reviewed-by: Bastien Nocera <hadess@hadess.net> Signed-off-by: Benjamin Tissoires <benjamin.tissoires@redhat.com>
This commit is contained in:
parent
69481059c5
commit
d03213f128
@ -2100,9 +2100,14 @@ static void sixaxis_send_output_report(struct sony_sc *sc)
|
||||
}
|
||||
}
|
||||
|
||||
hid_hw_raw_request(sc->hdev, report->report_id, (u8 *)report,
|
||||
sizeof(struct sixaxis_output_report),
|
||||
HID_OUTPUT_REPORT, HID_REQ_SET_REPORT);
|
||||
/* SHANWAN controllers require output reports via intr channel */
|
||||
if (sc->quirks & SHANWAN_GAMEPAD)
|
||||
hid_hw_output_report(sc->hdev, (u8 *)report,
|
||||
sizeof(struct sixaxis_output_report));
|
||||
else
|
||||
hid_hw_raw_request(sc->hdev, report->report_id, (u8 *)report,
|
||||
sizeof(struct sixaxis_output_report),
|
||||
HID_OUTPUT_REPORT, HID_REQ_SET_REPORT);
|
||||
}
|
||||
|
||||
static void dualshock4_send_output_report(struct sony_sc *sc)
|
||||
|
Loading…
Reference in New Issue
Block a user