diff options
Diffstat (limited to 'net/bluetooth/hci_request.c')
-rw-r--r-- | net/bluetooth/hci_request.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/net/bluetooth/hci_request.c b/net/bluetooth/hci_request.c index 55e096d20a0f..7e17907effb3 100644 --- a/net/bluetooth/hci_request.c +++ b/net/bluetooth/hci_request.c | |||
@@ -55,7 +55,7 @@ int hci_req_run(struct hci_request *req, hci_req_complete_t complete) | |||
55 | return -ENODATA; | 55 | return -ENODATA; |
56 | 56 | ||
57 | skb = skb_peek_tail(&req->cmd_q); | 57 | skb = skb_peek_tail(&req->cmd_q); |
58 | bt_cb(skb)->req_complete = complete; | 58 | bt_cb(skb)->req.complete = complete; |
59 | 59 | ||
60 | spin_lock_irqsave(&hdev->cmd_q.lock, flags); | 60 | spin_lock_irqsave(&hdev->cmd_q.lock, flags); |
61 | skb_queue_splice_tail(&req->cmd_q, &hdev->cmd_q); | 61 | skb_queue_splice_tail(&req->cmd_q, &hdev->cmd_q); |
@@ -116,9 +116,9 @@ void hci_req_add_ev(struct hci_request *req, u16 opcode, u32 plen, | |||
116 | } | 116 | } |
117 | 117 | ||
118 | if (skb_queue_empty(&req->cmd_q)) | 118 | if (skb_queue_empty(&req->cmd_q)) |
119 | bt_cb(skb)->req_start = 1; | 119 | bt_cb(skb)->req.start = true; |
120 | 120 | ||
121 | bt_cb(skb)->req_event = event; | 121 | bt_cb(skb)->req.event = event; |
122 | 122 | ||
123 | skb_queue_tail(&req->cmd_q, skb); | 123 | skb_queue_tail(&req->cmd_q, skb); |
124 | } | 124 | } |