aboutsummaryrefslogtreecommitdiffstats
path: root/include/net/bluetooth/sco.h
diff options
context:
space:
mode:
authorMarcel Holtmann <marcel@holtmann.org>2014-07-11 06:19:42 +0200
committerJohan Hedberg <johan.hedberg@intel.com>2014-07-11 13:58:53 +0300
commitfc8f525a6f7c81743bec6b5d497988313b211383 (patch)
tree163678e8a1cc8e86f61f80934f904251aaf4a984 /include/net/bluetooth/sco.h
parentBluetooth: Move struct sco_pinfo into net/bluetooth/sco.c (diff)
downloadlinux-dev-fc8f525a6f7c81743bec6b5d497988313b211383.tar.xz
linux-dev-fc8f525a6f7c81743bec6b5d497988313b211383.zip
Bluetooth: Move struct sco_conn into net/bluetooth/sco.c
There exists no external user of struct sco_conn and thus move it into the one place that is actually using it. Signed-off-by: Marcel Holtmann <marcel@holtmann.org> Signed-off-by: Johan Hedberg <johan.hedberg@intel.com>
Diffstat (limited to 'include/net/bluetooth/sco.h')
-rw-r--r--include/net/bluetooth/sco.h13
1 files changed, 0 insertions, 13 deletions
diff --git a/include/net/bluetooth/sco.h b/include/net/bluetooth/sco.h
index 7fec7cbd7396..42a0d089d715 100644
--- a/include/net/bluetooth/sco.h
+++ b/include/net/bluetooth/sco.h
@@ -51,17 +51,4 @@ struct sco_conninfo {
__u8 dev_class[3];
};
-/* ---- SCO connections ---- */
-struct sco_conn {
- struct hci_conn *hcon;
-
- spinlock_t lock;
- struct sock *sk;
-
- unsigned int mtu;
-};
-
-#define sco_conn_lock(c) spin_lock(&c->lock);
-#define sco_conn_unlock(c) spin_unlock(&c->lock);
-
#endif /* __SCO_H */