Hi Łukasz, On Wednesday 20 of August 2014 10:10:23 Lukasz Rymanowski wrote: > 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: Both patches applied, thanks. -- BR Szymon Janc -- 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