aboutsummaryrefslogtreecommitdiffstats
path: root/net
diff options
context:
space:
mode:
authorJohan Hedberg <johan.hedberg@intel.com>2014-09-10 20:58:54 -0400
committerMarcel Holtmann <marcel@holtmann.org>2014-09-10 21:02:22 -0400
commit5be5e275ad214bbb420425754354add679d8ab68 (patch)
treebc7e0a6b6e8805fd86b75373fede5a73723249b1 /net
parentaeaeb4bbca520b862d3b3e7cd74c23042815a160 (diff)
Bluetooth: Avoid hard-coded IO capability values in SMP
This is a trivial change to use a proper define for the NoInputNoOutput IO capability instead of hard-coded values. Signed-off-by: Johan Hedberg <johan.hedberg@intel.com> Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
Diffstat (limited to 'net')
-rw-r--r--net/bluetooth/smp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/net/bluetooth/smp.c b/net/bluetooth/smp.c
index 3700dd8d9d0b..51fc7db2d84e 100644
--- a/net/bluetooth/smp.c
+++ b/net/bluetooth/smp.c
@@ -959,7 +959,7 @@ static u8 smp_cmd_pairing_req(struct l2cap_conn *conn, struct sk_buff *skb)
959 memcpy(&smp->preq[1], req, sizeof(*req)); 959 memcpy(&smp->preq[1], req, sizeof(*req));
960 skb_pull(skb, sizeof(*req)); 960 skb_pull(skb, sizeof(*req));
961 961
962 if (conn->hcon->io_capability == 0x03) 962 if (conn->hcon->io_capability == HCI_IO_NO_INPUT_OUTPUT)
963 sec_level = BT_SECURITY_MEDIUM; 963 sec_level = BT_SECURITY_MEDIUM;
964 else 964 else
965 sec_level = authreq_to_seclevel(auth); 965 sec_level = authreq_to_seclevel(auth);
@@ -1169,7 +1169,7 @@ static u8 smp_cmd_security_req(struct l2cap_conn *conn, struct sk_buff *skb)
1169 1169
1170 auth = rp->auth_req & AUTH_REQ_MASK; 1170 auth = rp->auth_req & AUTH_REQ_MASK;
1171 1171
1172 if (hcon->io_capability == 0x03) 1172 if (hcon->io_capability == HCI_IO_NO_INPUT_OUTPUT)
1173 sec_level = BT_SECURITY_MEDIUM; 1173 sec_level = BT_SECURITY_MEDIUM;
1174 else 1174 else
1175 sec_level = authreq_to_seclevel(auth); 1175 sec_level = authreq_to_seclevel(auth);