Lines Matching refs:notify_req
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()
816 usb_ep_free_request(ecm->notify, ecm->notify_req); in ecm_bind()
914 usb_ep_dequeue(ecm->notify, ecm->notify_req); in ecm_unbind()
918 kfree(ecm->notify_req->buf); in ecm_unbind()
919 usb_ep_free_request(ecm->notify, ecm->notify_req); in ecm_unbind()