linux-bluetooth.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/2] android/bluetooth: Fix bdaddr_type in pairing scenario
@ 2014-08-20  8:10 Lukasz Rymanowski
  2014-08-20  8:10 ` [PATCH 2/2] android/bluetooth: Add debug log to select_device_bearer Lukasz Rymanowski
  2014-08-20 10:02 ` [PATCH 1/2] android/bluetooth: Fix bdaddr_type in pairing scenario Szymon Janc
  0 siblings, 2 replies; 3+ messages in thread
From: Lukasz Rymanowski @ 2014-08-20  8:10 UTC (permalink / raw)
  To: linux-bluetooth; +Cc: Lukasz Rymanowski

With this patch correct bdaddr type is used in ssp pairing scenario
---
 android/bluetooth.c | 8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)

diff --git a/android/bluetooth.c b/android/bluetooth.c
index 64a7696..59dd047 100644
--- a/android/bluetooth.c
+++ b/android/bluetooth.c
@@ -4500,11 +4500,13 @@ static void handle_ssp_reply_cmd(const void *buf, uint16_t len)
 	switch (cmd->ssp_variant) {
 	case HAL_SSP_VARIANT_CONFIRM:
 	case HAL_SSP_VARIANT_CONSENT:
-		status = user_confirm_reply(&dev->bdaddr, dev->bdaddr_type,
-								cmd->accept);
+		status = user_confirm_reply(&dev->bdaddr,
+						select_device_bearer(dev),
+						cmd->accept);
 		break;
 	case HAL_SSP_VARIANT_ENTRY:
-		status = user_passkey_reply(&dev->bdaddr, dev->bdaddr_type,
+		status = user_passkey_reply(&dev->bdaddr,
+						select_device_bearer(dev),
 						cmd->accept, cmd->passkey);
 		break;
 	case HAL_SSP_VARIANT_NOTIF:
-- 
1.8.4


^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2014-08-20 10:02 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-08-20  8:10 [PATCH 1/2] android/bluetooth: Fix bdaddr_type in pairing scenario Lukasz Rymanowski
2014-08-20  8:10 ` [PATCH 2/2] android/bluetooth: Add debug log to select_device_bearer Lukasz Rymanowski
2014-08-20 10:02 ` [PATCH 1/2] android/bluetooth: Fix bdaddr_type in pairing scenario Szymon Janc

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).