Lines Matching defs:nfc_hci_dev
93 struct nfc_hci_dev { struct
94 struct nfc_dev *ndev;
96 u32 max_data_link_payload;
98 bool shutting_down;
100 struct mutex msg_tx_mutex;
102 struct list_head msg_tx_queue;
104 struct work_struct msg_tx_work;
106 struct timer_list cmd_timer;
107 struct hci_msg *cmd_pending_msg;
109 struct sk_buff_head rx_hcp_frags;
111 struct work_struct msg_rx_work;
113 struct sk_buff_head msg_rx_queue;
115 struct nfc_hci_ops *ops;
117 struct nfc_llc *llc;
119 struct nfc_hci_init_data init_data;
121 void *clientdata;
123 u8 gate2pipe[NFC_HCI_MAX_GATES];
147 struct nfc_hci_dev *nfc_hci_allocate_device(struct nfc_hci_ops *ops, argument