diff options
author | Andre Guedes <andre.guedes@openbossa.org> | 2013-03-28 00:04:57 +0100 |
---|---|---|
committer | Johan Hedberg <johan.hedberg@intel.com> | 2013-04-04 10:12:34 +0200 |
commit | d4299ce6b33c0afd22cf6a170cfaf89c63d1114d (patch) | |
tree | f8b1671ea0ccd1173c31f866875c82c431f26381 /net/bluetooth | |
parent | Bluetooth: Fix hci_inquiry ioctl usage (diff) | |
download | linux-d4299ce6b33c0afd22cf6a170cfaf89c63d1114d.tar.xz linux-d4299ce6b33c0afd22cf6a170cfaf89c63d1114d.zip |
Bluetooth: Remove unneeded hci_req_cmd_status function
This patch removes the hci_req_cmd_status function since it is not
used anymore. The HCI request framework now considers the HCI command
has complete once the Command Status or Command Complete Event is
received.
Signed-off-by: Andre Guedes <andre.guedes@openbossa.org>
Signed-off-by: Johan Hedberg <johan.hedberg@intel.com>
Diffstat (limited to 'net/bluetooth')
-rw-r--r-- | net/bluetooth/hci_core.c | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/net/bluetooth/hci_core.c b/net/bluetooth/hci_core.c index 123992984a7c..a199d631e31c 100644 --- a/net/bluetooth/hci_core.c +++ b/net/bluetooth/hci_core.c @@ -3322,32 +3322,6 @@ call_complete: req_complete(hdev, status); } -void hci_req_cmd_status(struct hci_dev *hdev, u16 opcode, u8 status) -{ - hci_req_complete_t req_complete = NULL; - - BT_DBG("opcode 0x%04x status 0x%02x", opcode, status); - - if (status) { - hci_req_cmd_complete(hdev, opcode, status); - return; - } - - /* No need to handle success status if there are more commands */ - if (!hci_req_is_complete(hdev)) - return; - - if (hdev->sent_cmd) - req_complete = bt_cb(hdev->sent_cmd)->req.complete; - - /* If the request doesn't have a complete callback or there - * are other commands/requests in the hdev queue we consider - * this request as completed. - */ - if (!req_complete || !skb_queue_empty(&hdev->cmd_q)) - hci_req_cmd_complete(hdev, opcode, status); -} - static void hci_rx_work(struct work_struct *work) { struct hci_dev *hdev = container_of(work, struct hci_dev, rx_work); |