aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--net/bluetooth/smp.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/net/bluetooth/smp.c b/net/bluetooth/smp.c
index 1201670afe38..560f78a9f960 100644
--- a/net/bluetooth/smp.c
+++ b/net/bluetooth/smp.c
@@ -1210,7 +1210,7 @@ static u8 smp_cmd_security_req(struct l2cap_conn *conn, struct sk_buff *skb)
1210int smp_conn_security(struct hci_conn *hcon, __u8 sec_level) 1210int smp_conn_security(struct hci_conn *hcon, __u8 sec_level)
1211{ 1211{
1212 struct l2cap_conn *conn = hcon->l2cap_data; 1212 struct l2cap_conn *conn = hcon->l2cap_data;
1213 struct l2cap_chan *chan = conn->smp; 1213 struct l2cap_chan *chan;
1214 struct smp_chan *smp; 1214 struct smp_chan *smp;
1215 __u8 authreq; 1215 __u8 authreq;
1216 int ret; 1216 int ret;
@@ -1221,6 +1221,8 @@ int smp_conn_security(struct hci_conn *hcon, __u8 sec_level)
1221 if (!conn) 1221 if (!conn)
1222 return 1; 1222 return 1;
1223 1223
1224 chan = conn->smp;
1225
1224 if (!test_bit(HCI_LE_ENABLED, &hcon->hdev->dev_flags)) 1226 if (!test_bit(HCI_LE_ENABLED, &hcon->hdev->dev_flags))
1225 return 1; 1227 return 1;
1226 1228