Searched refs:notify_req (Results 1 – 5 of 5) sorted by relevance
/linux-5.19.10/drivers/usb/gadget/function/ |
D | f_ecm.c | 53 struct usb_request *notify_req; member 377 struct usb_request *req = ecm->notify_req; in ecm_do_notify() 770 ecm->notify_req = usb_ep_alloc_request(ep, GFP_KERNEL); in ecm_bind() 771 if (!ecm->notify_req) in ecm_bind() 773 ecm->notify_req->buf = kmalloc(ECM_STATUS_BYTECOUNT, GFP_KERNEL); in ecm_bind() 774 if (!ecm->notify_req->buf) in ecm_bind() 776 ecm->notify_req->context = ecm; in ecm_bind() 777 ecm->notify_req->complete = ecm_notify_complete; in ecm_bind() 814 if (ecm->notify_req) { in ecm_bind() 815 kfree(ecm->notify_req->buf); in ecm_bind() [all …]
|
D | f_acm.c | 54 struct usb_request *notify_req; member 512 req = acm->notify_req; in acm_cdc_notify() 513 acm->notify_req = NULL; in acm_cdc_notify() 537 acm->notify_req = req; in acm_cdc_notify() 550 if (acm->notify_req) { in acm_notify_serial_state() 575 acm->notify_req = req; in acm_cdc_notify_complete() 677 acm->notify_req = gs_alloc_req(ep, in acm_bind() 680 if (!acm->notify_req) in acm_bind() 683 acm->notify_req->complete = acm_cdc_notify_complete; in acm_bind() 684 acm->notify_req->context = acm; in acm_bind() [all …]
|
D | f_rndis.c | 78 struct usb_request *notify_req; member 388 struct usb_request *req = rndis->notify_req; in rndis_response_available() 769 rndis->notify_req = usb_ep_alloc_request(ep, GFP_KERNEL); in rndis_bind() 770 if (!rndis->notify_req) in rndis_bind() 772 rndis->notify_req->buf = kmalloc(STATUS_BYTECOUNT, GFP_KERNEL); in rndis_bind() 773 if (!rndis->notify_req->buf) in rndis_bind() 775 rndis->notify_req->length = STATUS_BYTECOUNT; in rndis_bind() 776 rndis->notify_req->context = rndis; in rndis_bind() 777 rndis->notify_req->complete = rndis_response_complete; in rndis_bind() 827 if (rndis->notify_req) { in rndis_bind() [all …]
|
D | f_ncm.c | 54 struct usb_request *notify_req; member 544 struct usb_request *req = ncm->notify_req; in ncm_do_notify() 1508 ncm->notify_req = usb_ep_alloc_request(ep, GFP_KERNEL); in ncm_bind() 1509 if (!ncm->notify_req) in ncm_bind() 1511 ncm->notify_req->buf = kmalloc(NCM_STATUS_BYTECOUNT, GFP_KERNEL); in ncm_bind() 1512 if (!ncm->notify_req->buf) in ncm_bind() 1514 ncm->notify_req->context = ncm; in ncm_bind() 1515 ncm->notify_req->complete = ncm_notify_complete; in ncm_bind() 1560 if (ncm->notify_req) { in ncm_bind() 1561 kfree(ncm->notify_req->buf); in ncm_bind() [all …]
|
/linux-5.19.10/drivers/misc/mei/ |
D | main.c | 648 u32 notify_get, notify_req; in mei_ioctl() local 739 if (copy_from_user(¬ify_req, in mei_ioctl() 740 (char __user *)data, sizeof(notify_req))) { in mei_ioctl() 745 rets = mei_ioctl_client_notify_request(file, notify_req); in mei_ioctl()
|