Return-Path: From: Vinicius Costa Gomes To: linux-bluetooth@vger.kernel.org Cc: Vinicius Costa Gomes Subject: [PATCH BlueZ 4/8] Fix not using the same way for pairing LE devices Date: Fri, 19 Aug 2011 21:09:25 -0300 Message-Id: <1313798969-8772-5-git-send-email-vinicius.gomes@openbossa.org> In-Reply-To: <1313798969-8772-1-git-send-email-vinicius.gomes@openbossa.org> References: <1313798969-8772-1-git-send-email-vinicius.gomes@openbossa.org> Sender: linux-bluetooth-owner@vger.kernel.org List-ID: Now that both backends (hciops and mgmtops) are capable of pairing LE devices, we don't have to force the procedure. --- src/adapter.c | 10 +--------- 1 files changed, 1 insertions(+), 9 deletions(-) diff --git a/src/adapter.c b/src/adapter.c index cfa4ddc..df0e92a 100644 --- a/src/adapter.c +++ b/src/adapter.c @@ -1672,15 +1672,7 @@ static DBusMessage *create_paired_device(DBusConnection *conn, return btd_error_failed(msg, strerror(-err)); } - if (device_get_type(device) != DEVICE_TYPE_LE) - return device_create_bonding(device, conn, msg, - agent_path, cap); - - err = device_browse_primary(device, conn, msg, TRUE); - if (err < 0) - return btd_error_failed(msg, strerror(-err)); - - return NULL; + return device_create_bonding(device, conn, msg, agent_path, cap); } static gint device_path_cmp(struct btd_device *device, const gchar *path) -- 1.7.6