summaryrefslogtreecommitdiff
path: root/net/bluetooth/hidp
diff options
context:
space:
mode:
Diffstat (limited to 'net/bluetooth/hidp')
-rw-r--r--net/bluetooth/hidp/core.c13
1 files changed, 10 insertions, 3 deletions
diff --git a/net/bluetooth/hidp/core.c b/net/bluetooth/hidp/core.c
index 0bec4588c..f2d3dcda3 100644
--- a/net/bluetooth/hidp/core.c
+++ b/net/bluetooth/hidp/core.c
@@ -378,9 +378,16 @@ static int hidp_output_report(struct hid_device *hid, __u8 *data, size_t count)
{
struct hidp_session *session = hid->driver_data;
- return hidp_send_intr_message(session,
- HIDP_TRANS_DATA | HIDP_DATA_RTYPE_OUPUT,
- data, count);
+ /* The Sixaxis and Dualshock 4 wants report sent via the ctrl channel */
+ if(hid->vendor == 0x54c && (hid->product == 0x5c4 || hid->product == 0x268)) {
+ return hidp_send_ctrl_message(session,
+ HIDP_TRANS_SET_REPORT | HIDP_DATA_RTYPE_OUPUT,
+ data, count);
+ } else {
+ return hidp_send_intr_message(session,
+ HIDP_TRANS_DATA | HIDP_DATA_RTYPE_OUPUT,
+ data, count);
+ }
}
static int hidp_raw_request(struct hid_device *hid, unsigned char reportnum,