Bluetooth: Remove unnecessary assignment in SMP

The smp variable in smp_conn_security is not used anywhere before the
smp = smp_chan_create() call in the smp_conn_security function so it
makes no sense to assign any other value to it before that.

Signed-off-by: Johan Hedberg <johan.hedberg@intel.com>
Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
This commit is contained in:
Johan Hedberg 2014-03-24 16:59:14 +02:00 committed by Marcel Holtmann
parent 61b3b2b6f4
commit 8396215d48
1 changed files with 0 additions and 2 deletions

View File

@ -889,8 +889,6 @@ int smp_conn_security(struct hci_conn *hcon, __u8 sec_level)
if (!conn)
return 1;
smp = conn->smp_chan;
if (!test_bit(HCI_LE_ENABLED, &hcon->hdev->dev_flags))
return 1;