diff options
author | Marcel Holtmann <marcel@holtmann.org> | 2013-10-15 17:26:21 -0400 |
---|---|---|
committer | Gustavo Padovan <gustavo.padovan@collabora.co.uk> | 2013-10-15 19:53:01 -0400 |
commit | e669cf803cb14d63d0b7c612286e5cfdec6e34f7 (patch) | |
tree | bbbd94b4daafffce88070b2257b3d039ceb95f72 /net/bluetooth/mgmt.c | |
parent | ce0e4a0d7b84d4ceebc91f97de8c08da23a7bda3 (diff) |
Bluetooth: Make mgmt_pin_code_reply_complete() return void
The return value of mgmt_pin_code_reply_complete() function is not
used and so just change it to return void.
Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
Signed-off-by: Gustavo Padovan <gustavo.padovan@collabora.co.uk>
Diffstat (limited to 'net/bluetooth/mgmt.c')
-rw-r--r-- | net/bluetooth/mgmt.c | 13 |
1 files changed, 5 insertions, 8 deletions
diff --git a/net/bluetooth/mgmt.c b/net/bluetooth/mgmt.c index efa2c524fcf8..608aa0f8bf7b 100644 --- a/net/bluetooth/mgmt.c +++ b/net/bluetooth/mgmt.c | |||
@@ -4544,26 +4544,23 @@ void mgmt_pin_code_request(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 secure) | |||
4544 | mgmt_event(MGMT_EV_PIN_CODE_REQUEST, hdev, &ev, sizeof(ev), NULL); | 4544 | mgmt_event(MGMT_EV_PIN_CODE_REQUEST, hdev, &ev, sizeof(ev), NULL); |
4545 | } | 4545 | } |
4546 | 4546 | ||
4547 | int mgmt_pin_code_reply_complete(struct hci_dev *hdev, bdaddr_t *bdaddr, | 4547 | void mgmt_pin_code_reply_complete(struct hci_dev *hdev, bdaddr_t *bdaddr, |
4548 | u8 status) | 4548 | u8 status) |
4549 | { | 4549 | { |
4550 | struct pending_cmd *cmd; | 4550 | struct pending_cmd *cmd; |
4551 | struct mgmt_rp_pin_code_reply rp; | 4551 | struct mgmt_rp_pin_code_reply rp; |
4552 | int err; | ||
4553 | 4552 | ||
4554 | cmd = mgmt_pending_find(MGMT_OP_PIN_CODE_REPLY, hdev); | 4553 | cmd = mgmt_pending_find(MGMT_OP_PIN_CODE_REPLY, hdev); |
4555 | if (!cmd) | 4554 | if (!cmd) |
4556 | return -ENOENT; | 4555 | return; |
4557 | 4556 | ||
4558 | bacpy(&rp.addr.bdaddr, bdaddr); | 4557 | bacpy(&rp.addr.bdaddr, bdaddr); |
4559 | rp.addr.type = BDADDR_BREDR; | 4558 | rp.addr.type = BDADDR_BREDR; |
4560 | 4559 | ||
4561 | err = cmd_complete(cmd->sk, hdev->id, MGMT_OP_PIN_CODE_REPLY, | 4560 | cmd_complete(cmd->sk, hdev->id, MGMT_OP_PIN_CODE_REPLY, |
4562 | mgmt_status(status), &rp, sizeof(rp)); | 4561 | mgmt_status(status), &rp, sizeof(rp)); |
4563 | 4562 | ||
4564 | mgmt_pending_remove(cmd); | 4563 | mgmt_pending_remove(cmd); |
4565 | |||
4566 | return err; | ||
4567 | } | 4564 | } |
4568 | 4565 | ||
4569 | int mgmt_pin_code_neg_reply_complete(struct hci_dev *hdev, bdaddr_t *bdaddr, | 4566 | int mgmt_pin_code_neg_reply_complete(struct hci_dev *hdev, bdaddr_t *bdaddr, |