aboutsummaryrefslogtreecommitdiffstats
path: root/net/bluetooth/mgmt.c
diff options
context:
space:
mode:
authorSzymon Janc <szymon.janc@tieto.com>2011-03-01 10:55:33 -0500
committerGustavo F. Padovan <padovan@profusion.mobi>2011-03-01 20:19:10 -0500
commit3cf2a4f6ca4e088ba79d05d6e7f4635c535e6ae4 (patch)
treed878acbb7dc8a118ba8cf310bc01a3e4ddf62740 /net/bluetooth/mgmt.c
parent8ce6284ea350a5249d09c958bdd088ec0eb4f57f (diff)
Bluetooth: Use variable name instead of type in sizeof()
As written in the CodingStyle doc. Signed-off-by: Szymon Janc <szymon.janc@tieto.com> Signed-off-by: Gustavo F. Padovan <padovan@profusion.mobi>
Diffstat (limited to 'net/bluetooth/mgmt.c')
-rw-r--r--net/bluetooth/mgmt.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/bluetooth/mgmt.c b/net/bluetooth/mgmt.c
index 6dd015277f0d..f69dbcb8a707 100644
--- a/net/bluetooth/mgmt.c
+++ b/net/bluetooth/mgmt.c
@@ -1035,7 +1035,7 @@ static int pin_code_neg_reply(struct sock *sk, u16 index, unsigned char *data,
1035 goto failed; 1035 goto failed;
1036 } 1036 }
1037 1037
1038 err = hci_send_cmd(hdev, HCI_OP_PIN_CODE_NEG_REPLY, sizeof(bdaddr_t), 1038 err = hci_send_cmd(hdev, HCI_OP_PIN_CODE_NEG_REPLY, sizeof(cp->bdaddr),
1039 &cp->bdaddr); 1039 &cp->bdaddr);
1040 if (err < 0) 1040 if (err < 0)
1041 mgmt_pending_remove(cmd); 1041 mgmt_pending_remove(cmd);