|
@@ -3840,17 +3840,6 @@ static void hci_le_conn_complete_evt(struct hci_dev *hdev, struct sk_buff *skb)
|
|
|
|
|
|
conn->dst_type = ev->bdaddr_type;
|
|
conn->dst_type = ev->bdaddr_type;
|
|
|
|
|
|
- /* The advertising parameters for own address type
|
|
|
|
- * define which source address and source address
|
|
|
|
- * type this connections has.
|
|
|
|
- */
|
|
|
|
- if (bacmp(&conn->src, BDADDR_ANY)) {
|
|
|
|
- conn->src_type = ADDR_LE_DEV_PUBLIC;
|
|
|
|
- } else {
|
|
|
|
- bacpy(&conn->src, &hdev->static_addr);
|
|
|
|
- conn->src_type = ADDR_LE_DEV_RANDOM;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
if (ev->role == LE_CONN_ROLE_MASTER) {
|
|
if (ev->role == LE_CONN_ROLE_MASTER) {
|
|
conn->out = true;
|
|
conn->out = true;
|
|
conn->link_mode |= HCI_LM_MASTER;
|
|
conn->link_mode |= HCI_LM_MASTER;
|
|
@@ -3892,11 +3881,6 @@ static void hci_le_conn_complete_evt(struct hci_dev *hdev, struct sk_buff *skb)
|
|
cancel_delayed_work(&conn->le_conn_timeout);
|
|
cancel_delayed_work(&conn->le_conn_timeout);
|
|
}
|
|
}
|
|
|
|
|
|
- /* Ensure that the hci_conn contains the identity address type
|
|
|
|
- * regardless of which address the connection was made with.
|
|
|
|
- */
|
|
|
|
- hci_copy_identity_address(hdev, &conn->src, &conn->src_type);
|
|
|
|
-
|
|
|
|
/* Lookup the identity address from the stored connection
|
|
/* Lookup the identity address from the stored connection
|
|
* address and address type.
|
|
* address and address type.
|
|
*
|
|
*
|