Lines Matching refs:notify_req
53 struct usb_request *notify_req; member
366 struct usb_request *req = ecm->notify_req; in ecm_do_notify()
755 ecm->notify_req = usb_ep_alloc_request(ep, GFP_KERNEL); in ecm_bind()
756 if (!ecm->notify_req) in ecm_bind()
758 ecm->notify_req->buf = kmalloc(ECM_STATUS_BYTECOUNT, GFP_KERNEL); in ecm_bind()
759 if (!ecm->notify_req->buf) in ecm_bind()
761 ecm->notify_req->context = ecm; in ecm_bind()
762 ecm->notify_req->complete = ecm_notify_complete; in ecm_bind()
797 if (ecm->notify_req) { in ecm_bind()
798 kfree(ecm->notify_req->buf); in ecm_bind()
799 usb_ep_free_request(ecm->notify, ecm->notify_req); in ecm_bind()
917 usb_ep_dequeue(ecm->notify, ecm->notify_req); in ecm_unbind()
921 kfree(ecm->notify_req->buf); in ecm_unbind()
922 usb_ep_free_request(ecm->notify, ecm->notify_req); in ecm_unbind()