Lines Matching +full:pre +full:- +full:filled
43 * data_exchange_cb_t - Definition of nfc_data_exchange callback
51 * of the operating field, err is -EIO.
89 #define NFC_TARGET_IDX_ANY -1
95 * struct nfc_target - NFC target descriptiom
123 * nfc_se - A structure for NFC accessible secure elements.
140 * nfc_evt_transaction - A struct for NFC secure element event transaction.
219 * nfc_free_device - free nfc device
225 put_device(&dev->dev); in nfc_free_device()
233 * nfc_set_parent_dev - set the parent device
241 nfc_dev->dev.parent = dev; in nfc_set_parent_dev()
245 * nfc_set_drvdata - set driver specifc data
252 dev_set_drvdata(&dev->dev, data); in nfc_set_drvdata()
256 * nfc_get_drvdata - get driver specifc data
262 return dev_get_drvdata(&dev->dev); in nfc_get_drvdata()
266 * nfc_device_name - get the nfc device name
272 return dev_name(&dev->dev); in nfc_device_name()
315 if (dev->vendor_cmds || dev->n_vendor_cmds) in nfc_set_vendor_cmds()
316 return -EINVAL; in nfc_set_vendor_cmds()
318 dev->vendor_cmds = cmds; in nfc_set_vendor_cmds()
319 dev->n_vendor_cmds = n_cmds; in nfc_set_vendor_cmds()
331 * nfc_vendor_cmd_alloc_reply_skb - allocate vendor command reply
337 * This function allocates and pre-fills an skb for a reply to
341 * The returned skb is pre-filled with some identifying data in
352 * Return: An allocated and pre-filled skb. %NULL if any errors happen.