diff options
author | Vinicius Costa Gomes <vinicius.gomes@openbossa.org> | 2012-07-27 18:32:54 -0400 |
---|---|---|
committer | Gustavo Padovan <gustavo.padovan@collabora.co.uk> | 2012-08-14 23:53:11 -0400 |
commit | 57f5d0d1d9f8e59819cb0ab4b707364c54b5b2d1 (patch) | |
tree | cb46e671ba8719cfb8560dd028449304fa65aea5 /net/bluetooth/hci_conn.c | |
parent | 22c5649eef0fc37532e20c14d2656b28ca708a69 (diff) |
Bluetooth: Remove some functions from being exported
Some connection related functions are only used inside hci_conn.c
so no need to have them exported.
Signed-off-by: Vinicius Costa Gomes <vinicius.gomes@openbossa.org>
Signed-off-by: Gustavo Padovan <gustavo.padovan@collabora.co.uk>
Diffstat (limited to 'net/bluetooth/hci_conn.c')
-rw-r--r-- | net/bluetooth/hci_conn.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/bluetooth/hci_conn.c b/net/bluetooth/hci_conn.c index 5ad7da217474..724eea980812 100644 --- a/net/bluetooth/hci_conn.c +++ b/net/bluetooth/hci_conn.c | |||
@@ -59,7 +59,7 @@ static void hci_le_connect_cancel(struct hci_conn *conn) | |||
59 | hci_send_cmd(conn->hdev, HCI_OP_LE_CREATE_CONN_CANCEL, 0, NULL); | 59 | hci_send_cmd(conn->hdev, HCI_OP_LE_CREATE_CONN_CANCEL, 0, NULL); |
60 | } | 60 | } |
61 | 61 | ||
62 | void hci_acl_connect(struct hci_conn *conn) | 62 | static void hci_acl_connect(struct hci_conn *conn) |
63 | { | 63 | { |
64 | struct hci_dev *hdev = conn->hdev; | 64 | struct hci_dev *hdev = conn->hdev; |
65 | struct inquiry_entry *ie; | 65 | struct inquiry_entry *ie; |
@@ -129,7 +129,7 @@ void hci_acl_disconn(struct hci_conn *conn, __u8 reason) | |||
129 | hci_send_cmd(conn->hdev, HCI_OP_DISCONNECT, sizeof(cp), &cp); | 129 | hci_send_cmd(conn->hdev, HCI_OP_DISCONNECT, sizeof(cp), &cp); |
130 | } | 130 | } |
131 | 131 | ||
132 | void hci_add_sco(struct hci_conn *conn, __u16 handle) | 132 | static void hci_add_sco(struct hci_conn *conn, __u16 handle) |
133 | { | 133 | { |
134 | struct hci_dev *hdev = conn->hdev; | 134 | struct hci_dev *hdev = conn->hdev; |
135 | struct hci_cp_add_sco cp; | 135 | struct hci_cp_add_sco cp; |