aboutsummaryrefslogtreecommitdiffstats
path: root/net/bluetooth/mgmt.c
diff options
context:
space:
mode:
authorMarcel Holtmann <marcel@holtmann.org>2013-10-15 13:15:57 -0400
committerJohan Hedberg <johan.hedberg@intel.com>2013-10-15 14:27:45 -0400
commitdc4a5ee2a3282a1044b164979609b4bfab43900b (patch)
treebc01104a07623282ad79a79d81bb9057b67c3d97 /net/bluetooth/mgmt.c
parent310a3d4854d71c0a565c9f7705749e78f6113c4c (diff)
Bluetooth: Make mgmt_new_link_key() return void
The return value of mgmt_new_link_key() function is not used and so just change it to return void. Signed-off-by: Marcel Holtmann <marcel@holtmann.org> Signed-off-by: Johan Hedberg <johan.hedberg@intel.com>
Diffstat (limited to 'net/bluetooth/mgmt.c')
-rw-r--r--net/bluetooth/mgmt.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/net/bluetooth/mgmt.c b/net/bluetooth/mgmt.c
index c70094014d46..6fb302e04cd8 100644
--- a/net/bluetooth/mgmt.c
+++ b/net/bluetooth/mgmt.c
@@ -4341,8 +4341,8 @@ void mgmt_write_scan_failed(struct hci_dev *hdev, u8 scan, u8 status)
4341 cmd_status_rsp, &mgmt_err); 4341 cmd_status_rsp, &mgmt_err);
4342} 4342}
4343 4343
4344int mgmt_new_link_key(struct hci_dev *hdev, struct link_key *key, 4344void mgmt_new_link_key(struct hci_dev *hdev, struct link_key *key,
4345 bool persistent) 4345 bool persistent)
4346{ 4346{
4347 struct mgmt_ev_new_link_key ev; 4347 struct mgmt_ev_new_link_key ev;
4348 4348
@@ -4355,7 +4355,7 @@ int mgmt_new_link_key(struct hci_dev *hdev, struct link_key *key,
4355 memcpy(ev.key.val, key->val, HCI_LINK_KEY_SIZE); 4355 memcpy(ev.key.val, key->val, HCI_LINK_KEY_SIZE);
4356 ev.key.pin_len = key->pin_len; 4356 ev.key.pin_len = key->pin_len;
4357 4357
4358 return mgmt_event(MGMT_EV_NEW_LINK_KEY, hdev, &ev, sizeof(ev), NULL); 4358 mgmt_event(MGMT_EV_NEW_LINK_KEY, hdev, &ev, sizeof(ev), NULL);
4359} 4359}
4360 4360
4361int mgmt_new_ltk(struct hci_dev *hdev, struct smp_ltk *key, u8 persistent) 4361int mgmt_new_ltk(struct hci_dev *hdev, struct smp_ltk *key, u8 persistent)