aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorGustavo F. Padovan <padovan@profusion.mobi>2011-03-25 19:41:00 -0400
committerGustavo F. Padovan <padovan@profusion.mobi>2011-04-07 17:06:27 -0400
commit311bb895e325e5f4d708c1ed2206da8a3885c83a (patch)
tree17a7ec8b48ec79dbe5095c747ecaaab66e21f5ed /include
parentf1c6775be6fc944e32e0150305d9753b9a846519 (diff)
Bluetooth: Move busy workqueue to struct l2cap_chan
As part of the moving channel stuff to l2cap_chan. Signed-off-by: Gustavo F. Padovan <padovan@profusion.mobi>
Diffstat (limited to 'include')
-rw-r--r--include/net/bluetooth/l2cap.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/net/bluetooth/l2cap.h b/include/net/bluetooth/l2cap.h
index 09f4a2fc2e20..d05d91f2fd32 100644
--- a/include/net/bluetooth/l2cap.h
+++ b/include/net/bluetooth/l2cap.h
@@ -311,6 +311,7 @@ struct l2cap_chan {
311 struct timer_list ack_timer; 311 struct timer_list ack_timer;
312 struct sk_buff_head srej_q; 312 struct sk_buff_head srej_q;
313 struct sk_buff_head busy_q; 313 struct sk_buff_head busy_q;
314 struct work_struct busy_work;
314 315
315 struct list_head list; 316 struct list_head list;
316}; 317};
@@ -384,7 +385,6 @@ struct l2cap_pinfo {
384 __le16 sport; 385 __le16 sport;
385 386
386 struct sk_buff_head tx_queue; 387 struct sk_buff_head tx_queue;
387 struct work_struct busy_work;
388 struct srej_list srej_l; 388 struct srej_list srej_l;
389 struct l2cap_conn *conn; 389 struct l2cap_conn *conn;
390 struct l2cap_chan *chan; 390 struct l2cap_chan *chan;