Home
last modified time | relevance | path

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

/linux-4.4.14/drivers/usb/gadget/function/
Df_ecm.c57 struct usb_request *notify_req; member
380 struct usb_request *req = ecm->notify_req; in ecm_do_notify()
427 ecm->notify_req = NULL; in ecm_do_notify()
430 ecm->notify_req = req; in ecm_do_notify()
465 ecm->notify_req = req; in ecm_notify_complete()
765 ecm->notify_req = usb_ep_alloc_request(ep, GFP_KERNEL); in ecm_bind()
766 if (!ecm->notify_req) in ecm_bind()
768 ecm->notify_req->buf = kmalloc(ECM_STATUS_BYTECOUNT, GFP_KERNEL); in ecm_bind()
769 if (!ecm->notify_req->buf) in ecm_bind()
771 ecm->notify_req->context = ecm; in ecm_bind()
[all …]
Df_acm.c57 struct usb_request *notify_req; member
503 req = acm->notify_req; in acm_cdc_notify()
504 acm->notify_req = NULL; in acm_cdc_notify()
528 acm->notify_req = req; in acm_cdc_notify()
540 if (acm->notify_req) { in acm_notify_serial_state()
564 acm->notify_req = req; in acm_cdc_notify_complete()
666 acm->notify_req = gs_alloc_req(ep, in acm_bind()
669 if (!acm->notify_req) in acm_bind()
672 acm->notify_req->complete = acm_cdc_notify_complete; in acm_bind()
673 acm->notify_req->context = acm; in acm_bind()
[all …]
Df_rndis.c82 struct usb_request *notify_req; member
387 struct usb_request *req = rndis->notify_req; in rndis_response_available()
763 rndis->notify_req = usb_ep_alloc_request(ep, GFP_KERNEL); in rndis_bind()
764 if (!rndis->notify_req) in rndis_bind()
766 rndis->notify_req->buf = kmalloc(STATUS_BYTECOUNT, GFP_KERNEL); in rndis_bind()
767 if (!rndis->notify_req->buf) in rndis_bind()
769 rndis->notify_req->length = STATUS_BYTECOUNT; in rndis_bind()
770 rndis->notify_req->context = rndis; in rndis_bind()
771 rndis->notify_req->complete = rndis_response_complete; in rndis_bind()
821 if (rndis->notify_req) { in rndis_bind()
[all …]
Df_ncm.c58 struct usb_request *notify_req; member
476 struct usb_request *req = ncm->notify_req; in ncm_do_notify()
523 ncm->notify_req = NULL; in ncm_do_notify()
533 ncm->notify_req = req; in ncm_do_notify()
578 ncm->notify_req = req; in ncm_notify_complete()
1415 ncm->notify_req = usb_ep_alloc_request(ep, GFP_KERNEL); in ncm_bind()
1416 if (!ncm->notify_req) in ncm_bind()
1418 ncm->notify_req->buf = kmalloc(NCM_STATUS_BYTECOUNT, GFP_KERNEL); in ncm_bind()
1419 if (!ncm->notify_req->buf) in ncm_bind()
1421 ncm->notify_req->context = ncm; in ncm_bind()
[all …]
/linux-4.4.14/drivers/misc/mei/
Dmain.c505 u32 notify_get, notify_req; in mei_ioctl() local
548 if (copy_from_user(&notify_req, in mei_ioctl()
549 (char __user *)data, sizeof(notify_req))) { in mei_ioctl()
554 rets = mei_ioctl_client_notify_request(file, notify_req); in mei_ioctl()