From face37796d2006b3be381eee790a4b2567b369b7 Mon Sep 17 00:00:00 2001 From: Alex Gal Date: Thu, 6 Nov 2014 10:29:14 -0500 Subject: [PATCH] profiles/input: Add Sony Navigation Controller --- profiles/input/server.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/profiles/input/server.c b/profiles/input/server.c index 307db96ea..50a9074e3 100644 --- a/profiles/input/server.c +++ b/profiles/input/server.c @@ -140,6 +140,10 @@ static bool dev_is_sixaxis(const bdaddr_t *src, const bdaddr_t *dst) if (vid == 0x054c && pid == 0x05c4) return true; + /* Navigation Controller */ + if (vid == 0x054c && pid == 0x042f) + return true; + return false; } -- 2.47.3