[PATCH v2 4/4] Add new DS4 controller PID into special case handler

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



There is a special path for various game controllers where they connect
to the hid service before bluetoothd knows what they are.

This patch adds another PID for the Dualshock4 controller. This new PID
matches with the model number CUH-ZCT2U.
---
 profiles/input/server.c | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/profiles/input/server.c b/profiles/input/server.c
index eb3fcf8..3576f2b 100644
--- a/profiles/input/server.c
+++ b/profiles/input/server.c
@@ -135,8 +135,10 @@ static bool dev_is_sixaxis(const bdaddr_t *src, const bdaddr_t *dst)
 	if (vid == 0x054c && pid == 0x0268)
 		return true;
 
-	/* DualShock 4 */
-	if (vid == 0x054c && pid == 0x05c4)
+	/* DualShock 4 CUH-ZCT1U (PID 0x05c4)
+	 * DualShock 4 CUH-ZCT2U (PID 0x09cc) (slim/pro)
+	 */
+	if (vid == 0x054c && (pid == 0x05c4 || pid == 0x09cc))
 		return true;
 
 	/* Navigation Controller */
-- 
2.7.4

--
To unsubscribe from this list: send the line "unsubscribe linux-bluetooth" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at  http://vger.kernel.org/majordomo-info.html



[Index of Archives]     [Bluez Devel]     [Linux Wireless Networking]     [Linux Wireless Personal Area Networking]     [Linux ATH6KL]     [Linux USB Devel]     [Linux Media Drivers]     [Linux Audio Users]     [Linux Kernel]     [Linux SCSI]     [Big List of Linux Books]

  Powered by Linux