Home
last modified time | relevance | path

Searched refs:mei_buf (Results 1 – 1 of 1) sorted by relevance

/linux-4.1.27/drivers/misc/mei/
Dnfc.c348 u8 *mei_buf; in mei_nfc_send() local
355 mei_buf = kzalloc(length + MEI_NFC_HEADER_SIZE, GFP_KERNEL); in mei_nfc_send()
356 if (!mei_buf) in mei_nfc_send()
359 hdr = (struct mei_nfc_hci_hdr *) mei_buf; in mei_nfc_send()
366 memcpy(mei_buf + MEI_NFC_HEADER_SIZE, buf, length); in mei_nfc_send()
367 err = __mei_cl_send(ndev->cl, mei_buf, length + MEI_NFC_HEADER_SIZE); in mei_nfc_send()
379 kfree(mei_buf); in mei_nfc_send()