Lines Matching defs:hdev
111 static void nci_hci_reset_pipes(struct nci_hci_dev *hdev)
116 hdev->pipes[i].gate = NCI_HCI_INVALID_GATE;
117 hdev->pipes[i].host = NCI_HCI_INVALID_HOST;
119 memset(hdev->gate2pipe, NCI_HCI_INVALID_PIPE, sizeof(hdev->gate2pipe));
407 struct nci_hci_dev *hdev =
413 for (; (skb = skb_dequeue(&hdev->msg_rx_queue)); kcov_remote_stop()) {
422 nci_hci_hcp_message_rx(hdev->ndev, pipe,
776 struct nci_hci_dev *hdev;
778 hdev = kzalloc(sizeof(*hdev), GFP_KERNEL);
779 if (!hdev)
782 skb_queue_head_init(&hdev->rx_hcp_frags);
783 INIT_WORK(&hdev->msg_rx_work, nci_hci_msg_rx_work);
784 skb_queue_head_init(&hdev->msg_rx_queue);
785 hdev->ndev = ndev;
787 return hdev;