Lines Matching defs:notify_req
55 struct usb_request *notify_req;
537 struct usb_request *req = ncm->notify_req;
1524 ncm->notify_req = usb_ep_alloc_request(ep, GFP_KERNEL);
1525 if (!ncm->notify_req)
1527 ncm->notify_req->buf = kmalloc(NCM_STATUS_BYTECOUNT, GFP_KERNEL);
1528 if (!ncm->notify_req->buf)
1530 ncm->notify_req->context = ncm;
1531 ncm->notify_req->complete = ncm_notify_complete;
1573 if (ncm->notify_req) {
1574 kfree(ncm->notify_req->buf);
1575 usb_ep_free_request(ncm->notify, ncm->notify_req);
1743 usb_ep_dequeue(ncm->notify, ncm->notify_req);
1747 kfree(ncm->notify_req->buf);
1748 usb_ep_free_request(ncm->notify, ncm->notify_req);