aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/net/bluetooth/bluetooth.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/net/bluetooth/bluetooth.h b/include/net/bluetooth/bluetooth.h
index 33a5e00025aa..d8367cc7c76e 100644
--- a/include/net/bluetooth/bluetooth.h
+++ b/include/net/bluetooth/bluetooth.h
@@ -269,6 +269,9 @@ struct l2cap_ctrl {
269 __u16 reqseq; 269 __u16 reqseq;
270 __u16 txseq; 270 __u16 txseq;
271 __u8 retries; 271 __u8 retries;
272 __le16 psm;
273 bdaddr_t bdaddr;
274 struct l2cap_chan *chan;
272}; 275};
273 276
274struct hci_dev; 277struct hci_dev;
@@ -284,10 +287,7 @@ struct bt_skb_cb {
284 __u8 req_start:1; 287 __u8 req_start:1;
285 u8 req_event; 288 u8 req_event;
286 hci_req_complete_t req_complete; 289 hci_req_complete_t req_complete;
287 struct l2cap_chan *chan; 290 struct l2cap_ctrl l2cap;
288 struct l2cap_ctrl control;
289 bdaddr_t bdaddr;
290 __le16 psm;
291}; 291};
292#define bt_cb(skb) ((struct bt_skb_cb *)((skb)->cb)) 292#define bt_cb(skb) ((struct bt_skb_cb *)((skb)->cb))
293 293