]> git.openfabrics.org - ~emulex/infiniband.git/commitdiff
Bluetooth: Remove useless code in hci_connect
authorAndre Guedes <andre.guedes@openbossa.org>
Tue, 24 Apr 2012 19:11:11 +0000 (16:11 -0300)
committerGustavo Padovan <gustavo@padovan.org>
Wed, 9 May 2012 04:40:42 +0000 (01:40 -0300)
This patch removes unneeded variable assignments in hci_connect.
'sec_level' is already assigned to BT_SECURITY_LOW in hci_le_connect
and 'pending_sec_level' and 'auth_type' are assigned right after
if statement.

Signed-off-by: Andre Guedes <andre.guedes@openbossa.org>
Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
net/bluetooth/hci_conn.c

index 7db3edc28f77d362802b19a2557520f269d097c3..8f352cd1745a60cc574e2848442ac04785ac54bc 100644 (file)
@@ -535,9 +535,6 @@ struct hci_conn *hci_connect(struct hci_dev *hdev, int type, bdaddr_t *dst, __u8
                                return ERR_PTR(-ENOMEM);
 
                        le->dst_type = entry->bdaddr_type;
-                       le->pending_sec_level = sec_level;
-                       le->sec_level = BT_SECURITY_LOW;
-                       le->auth_type = auth_type;
                        hci_le_connect(le);
                }