Lines 5440-5449
void hci_event_packet(struct hci_dev *hdev, struct sk_buff *skb)
Link Here
|
5440 |
if (req_complete) { |
5440 |
if (req_complete) { |
5441 |
req_complete(hdev, status, opcode); |
5441 |
req_complete(hdev, status, opcode); |
5442 |
} else if (req_complete_skb) { |
5442 |
} else if (req_complete_skb) { |
5443 |
if (!hci_get_cmd_complete(hdev, opcode, req_evt, orig_skb)) { |
5443 |
if (!hci_get_cmd_complete(hdev, opcode, req_evt, orig_skb)) |
5444 |
kfree_skb(orig_skb); |
|
|
5445 |
orig_skb = NULL; |
5444 |
orig_skb = NULL; |
5446 |
} |
|
|
5447 |
req_complete_skb(hdev, status, opcode, orig_skb); |
5445 |
req_complete_skb(hdev, status, opcode, orig_skb); |
5448 |
} |
5446 |
} |
5449 |
|
5447 |
|
5450 |
- |
|
|