aboutsummaryrefslogtreecommitdiffstats
path: root/net/bluetooth/hci_conn.c
diff options
context:
space:
mode:
authorGustavo Padovan <gustavo.padovan@collabora.co.uk>2012-05-23 03:04:23 -0400
committerJohan Hedberg <johan.hedberg@intel.com>2012-06-04 23:34:08 -0400
commit8449e381a8558fb1d911017ea26bae681fea4240 (patch)
tree410c1a1d8e1c046c72b7ce56990f805ecf447f6b /net/bluetooth/hci_conn.c
parent8c520a59927a5600973782505dbb750d985057c4 (diff)
Bluetooth: Remove unneeded EXPORT_SYMBOL
After l2cap, sco and bluetooth modules merge some symbols doesn't need to be exported anymore. Signed-off-by: Gustavo Padovan <gustavo.padovan@collabora.co.uk> Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
Diffstat (limited to 'net/bluetooth/hci_conn.c')
-rw-r--r--net/bluetooth/hci_conn.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/net/bluetooth/hci_conn.c b/net/bluetooth/hci_conn.c
index 3bb2d552a888..8163ee175d6a 100644
--- a/net/bluetooth/hci_conn.c
+++ b/net/bluetooth/hci_conn.c
@@ -188,7 +188,6 @@ void hci_le_conn_update(struct hci_conn *conn, u16 min, u16 max,
188 188
189 hci_send_cmd(hdev, HCI_OP_LE_CONN_UPDATE, sizeof(cp), &cp); 189 hci_send_cmd(hdev, HCI_OP_LE_CONN_UPDATE, sizeof(cp), &cp);
190} 190}
191EXPORT_SYMBOL(hci_le_conn_update);
192 191
193void hci_le_start_enc(struct hci_conn *conn, __le16 ediv, __u8 rand[8], 192void hci_le_start_enc(struct hci_conn *conn, __le16 ediv, __u8 rand[8],
194 __u8 ltk[16]) 193 __u8 ltk[16])
@@ -207,7 +206,6 @@ void hci_le_start_enc(struct hci_conn *conn, __le16 ediv, __u8 rand[8],
207 206
208 hci_send_cmd(hdev, HCI_OP_LE_START_ENC, sizeof(cp), &cp); 207 hci_send_cmd(hdev, HCI_OP_LE_START_ENC, sizeof(cp), &cp);
209} 208}
210EXPORT_SYMBOL(hci_le_start_enc);
211 209
212/* Device _must_ be locked */ 210/* Device _must_ be locked */
213void hci_sco_setup(struct hci_conn *conn, __u8 status) 211void hci_sco_setup(struct hci_conn *conn, __u8 status)
@@ -546,7 +544,6 @@ struct hci_conn *hci_connect(struct hci_dev *hdev, int type, bdaddr_t *dst,
546 544
547 return sco; 545 return sco;
548} 546}
549EXPORT_SYMBOL(hci_connect);
550 547
551/* Check link security requirement */ 548/* Check link security requirement */
552int hci_conn_check_link_mode(struct hci_conn *conn) 549int hci_conn_check_link_mode(struct hci_conn *conn)
@@ -558,7 +555,6 @@ int hci_conn_check_link_mode(struct hci_conn *conn)
558 555
559 return 1; 556 return 1;
560} 557}
561EXPORT_SYMBOL(hci_conn_check_link_mode);
562 558
563/* Authenticate remote device */ 559/* Authenticate remote device */
564static int hci_conn_auth(struct hci_conn *conn, __u8 sec_level, __u8 auth_type) 560static int hci_conn_auth(struct hci_conn *conn, __u8 sec_level, __u8 auth_type)
@@ -690,7 +686,6 @@ int hci_conn_change_link_key(struct hci_conn *conn)
690 686
691 return 0; 687 return 0;
692} 688}
693EXPORT_SYMBOL(hci_conn_change_link_key);
694 689
695/* Switch role */ 690/* Switch role */
696int hci_conn_switch_role(struct hci_conn *conn, __u8 role) 691int hci_conn_switch_role(struct hci_conn *conn, __u8 role)