We need to accept connection if idev is not present but device is sixaxis. This fix not doing so for sixaxis devices. --- profiles/input/server.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/profiles/input/server.c b/profiles/input/server.c index f2e5836..d85d6a9 100644 --- a/profiles/input/server.c +++ b/profiles/input/server.c @@ -204,7 +204,7 @@ static void auth_callback(DBusError *derr, void *user_data) goto reject; } - if (!input_device_exists(&src, &dst) && dev_is_sixaxis(&src, &dst)) + if (!input_device_exists(&src, &dst) && !dev_is_sixaxis(&src, &dst)) return; if (!bt_io_accept(server->confirm, connect_event_cb, server, -- 1.8.5.2 -- 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