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