diff options
author | Fengguang Wu <fengguang.wu@intel.com> | 2013-04-20 09:24:31 -0400 |
---|---|---|
committer | Gustavo Padovan <gustavo.padovan@collabora.co.uk> | 2013-04-23 19:30:48 -0400 |
commit | 77a63e0a550a731d2bd330679696d8fe66bf94a9 (patch) | |
tree | abec8579dd0b8af78353b8bca148607f938c85f0 | |
parent | dffd30ee9619ccd7153f1861ba0436bbc4400f36 (diff) |
Bluetooth: hci_get_cmd_complete() can be static
There are new sparse warnings show up in
tree: git://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next master
head: a0b644b0385fa58ca578f6dce4473e8a8e6f6c38
commit: 75e84b7c522c6e07964cd1f5bf28535768a1e9fa Bluetooth: Add __hci_cmd_sync() helper function
date: 13 days ago
>> net/bluetooth/hci_core.c:82:16: sparse: symbol 'hci_get_cmd_complete' was not declared. Should it be static?
Signed-off-by: Fengguang Wu <fengguang.wu@intel.com>
Acked-by: Johan Hedberg <johan.hedberg@intel.com>
Signed-off-by: Gustavo Padovan <gustavo.padovan@collabora.co.uk>
-rw-r--r-- | net/bluetooth/hci_core.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/net/bluetooth/hci_core.c b/net/bluetooth/hci_core.c index b04ac355f118..33843c5c4939 100644 --- a/net/bluetooth/hci_core.c +++ b/net/bluetooth/hci_core.c | |||
@@ -79,7 +79,8 @@ static void hci_req_cancel(struct hci_dev *hdev, int err) | |||
79 | } | 79 | } |
80 | } | 80 | } |
81 | 81 | ||
82 | struct sk_buff *hci_get_cmd_complete(struct hci_dev *hdev, u16 opcode, u8 event) | 82 | static struct sk_buff *hci_get_cmd_complete(struct hci_dev *hdev, u16 opcode, |
83 | u8 event) | ||
83 | { | 84 | { |
84 | struct hci_ev_cmd_complete *ev; | 85 | struct hci_ev_cmd_complete *ev; |
85 | struct hci_event_hdr *hdr; | 86 | struct hci_event_hdr *hdr; |