Lines Matching refs:status
32 * ActiveSync have even worse status in terms of specification.
116 /* status endpoint is optional; this could be patched later */
391 int status;
404 status = usb_ep_queue(rndis->notify, req, GFP_ATOMIC);
405 if (status) {
407 DBG(cdev, "notify/0 --> %d\n", status);
415 int status = req->status;
419 * - RNDIS_RESPONSE_AVAILABLE (status/irq)
421 switch (status) {
429 ep->name, status,
441 status = usb_ep_queue(rndis->notify, req, GFP_ATOMIC);
442 if (status) {
444 DBG(cdev, "notify/1 --> %d\n", status);
453 int status;
457 status = rndis_msg_parser(rndis->params, (u8 *) req->buf);
458 if (status < 0)
460 status, req->actual, req->length);
522 /* respond with data transfer or status phase? */
674 int status;
706 status = gether_register_netdev(rndis_opts->net);
707 if (status)
715 status = PTR_ERR(us);
723 status = usb_interface_id(c, f);
724 if (status < 0)
726 rndis->ctrl_id = status;
727 rndis_iad_descriptor.bFirstInterface = status;
729 rndis_control_intf.bInterfaceNumber = status;
730 rndis_union_desc.bMasterInterface0 = status;
736 status = usb_interface_id(c, f);
737 if (status < 0)
739 rndis->data_id = status;
741 rndis_data_intf.bInterfaceNumber = status;
742 rndis_union_desc.bSlaveInterface0 = status;
744 status = -ENODEV;
757 /* NOTE: a status/notification endpoint is, strictly speaking,
766 status = -ENOMEM;
791 status = usb_assign_descriptors(f, eth_fs_function, eth_hs_function,
793 if (status)
805 status = -EINVAL;
832 ERROR(cdev, "%s: can't bind, err %d\n", f->name, status);
834 return status;