Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b2905044 authored by Andre Guedes's avatar Andre Guedes Committed by Gustavo Padovan
Browse files

Bluetooth: Remove useless code in hci_connect



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: default avatarAndre Guedes <andre.guedes@openbossa.org>
Signed-off-by: default avatarMarcel Holtmann <marcel@holtmann.org>
parent 9f0caeb1
Loading
Loading
Loading
Loading
+0 −3
Original line number Diff line number Diff line
@@ -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);
		}