aboutsummaryrefslogtreecommitdiffstats
path: root/net/bluetooth/smp.c
diff options
context:
space:
mode:
authorVinicius Costa Gomes <vinicius.gomes@openbossa.org>2011-06-09 18:50:48 -0300
committerGustavo F. Padovan <padovan@profusion.mobi>2011-06-13 15:48:26 -0300
commit9b3d67405b17d61ba8be9d824222fb410f487b8a (patch)
tree79b4dd12ca7e92cc59977563a86da4dd6c8a8b22 /net/bluetooth/smp.c
parentBluetooth: Add support for LE Start Encryption (diff)
downloadlinux-dev-9b3d67405b17d61ba8be9d824222fb410f487b8a.tar.xz
linux-dev-9b3d67405b17d61ba8be9d824222fb410f487b8a.zip
Bluetooth: Remove debug statements
Now that these commands are sent to the controller we can use hcidump to verify that the correct values are produced. Signed-off-by: Vinicius Costa Gomes <vinicius.gomes@openbossa.org> Signed-off-by: Gustavo F. Padovan <padovan@profusion.mobi>
Diffstat (limited to 'net/bluetooth/smp.c')
-rw-r--r--net/bluetooth/smp.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/net/bluetooth/smp.c b/net/bluetooth/smp.c
index 56828db68109..69839797b7dc 100644
--- a/net/bluetooth/smp.c
+++ b/net/bluetooth/smp.c
@@ -280,7 +280,7 @@ static void smp_cmd_pairing_random(struct l2cap_conn *conn, struct sk_buff *skb)
struct hci_conn *hcon = conn->hcon;
struct crypto_blkcipher *tfm = hcon->hdev->tfm;
int ret;
- u8 key[16], res[16], random[16], confirm[16], buf[128];
+ u8 key[16], res[16], random[16], confirm[16];
swap128(skb->data, random);
skb_pull(skb, sizeof(random));
@@ -329,10 +329,6 @@ static void smp_cmd_pairing_random(struct l2cap_conn *conn, struct sk_buff *skb)
smp_s1(tfm, conn->tk, conn->prnd, random, key);
swap128(key, hcon->ltk);
-
- hex_dump_to_buffer(key, sizeof(key), 16, 1, buf,
- sizeof(buf), 0);
- BT_DBG("key %s", buf);
}
}