diff options
author | Matt Ranostay <matt.ranostay@konsulko.com> | 2017-06-01 15:37:25 -0700 |
---|---|---|
committer | Matt Ranostay <matt.ranostay@konsulko.com> | 2017-06-01 16:24:33 -0700 |
commit | 950280341c4bf12b1f85ab730a061f7a9c893a92 (patch) | |
tree | 0b3f8db9a37cd24999fa2a3e973396488fc93f7d /binding-bluetooth/bluetooth-api.c | |
parent | 37aacabc67fc2d3b759cdc85eb46705f729f8682 (diff) |
binding: bluetooth: allow connection to select uuid profiles
Currenly the bluetooth binding connects to all available bluetooth
profiles. This change allows you select an singular profile.
Change-Id: Iccb016f132e0690699eefddee637ad91ea69e69c
Bug-AGL: SPEC-638
Signed-off-by: Matt Ranostay <matt.ranostay@konsulko.com>
Diffstat (limited to 'binding-bluetooth/bluetooth-api.c')
-rw-r--r-- | binding-bluetooth/bluetooth-api.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/binding-bluetooth/bluetooth-api.c b/binding-bluetooth/bluetooth-api.c index 4a7092a..78fd87b 100644 --- a/binding-bluetooth/bluetooth-api.c +++ b/binding-bluetooth/bluetooth-api.c @@ -476,7 +476,7 @@ static void bt_connect (struct afb_req request) return; } - ret = device_connect(value); + ret = device_connect(value, NULL); if (0 == ret) { @@ -503,7 +503,7 @@ static void bt_disconnect (struct afb_req request) return; } - ret = device_disconnect(value); + ret = device_disconnect(value, NULL); if (0 == ret) { afb_req_success (request, NULL, NULL); |