Lines Matching refs:status
32 * ActiveSync have even worse status in terms of specification.
103 /* status endpoint is optional; this could be patched later */
378 int status;
391 status = usb_ep_queue(rndis->notify, req, GFP_ATOMIC);
392 if (status) {
394 DBG(cdev, "notify/0 --> %d\n", status);
402 int status = req->status;
406 * - RNDIS_RESPONSE_AVAILABLE (status/irq)
408 switch (status) {
416 ep->name, status,
428 status = usb_ep_queue(rndis->notify, req, GFP_ATOMIC);
429 if (status) {
431 DBG(cdev, "notify/1 --> %d\n", status);
440 int status;
444 status = rndis_msg_parser(rndis->params, (u8 *) req->buf);
445 if (status < 0)
447 status, req->actual, req->length);
509 /* respond with data transfer or status phase? */
661 int status;
693 status = gether_register_netdev(rndis_opts->net);
694 if (status)
702 status = PTR_ERR(us);
710 status = usb_interface_id(c, f);
711 if (status < 0)
713 rndis->ctrl_id = status;
714 rndis_iad_descriptor.bFirstInterface = status;
716 rndis_control_intf.bInterfaceNumber = status;
717 rndis_union_desc.bMasterInterface0 = status;
723 status = usb_interface_id(c, f);
724 if (status < 0)
726 rndis->data_id = status;
728 rndis_data_intf.bInterfaceNumber = status;
729 rndis_union_desc.bSlaveInterface0 = status;
731 status = -ENODEV;
744 /* NOTE: a status/notification endpoint is, strictly speaking,
753 status = -ENOMEM;
778 status = usb_assign_descriptors(f, eth_fs_function, eth_hs_function,
780 if (status)
792 status = -EINVAL;
817 ERROR(cdev, "%s: can't bind, err %d\n", f->name, status);
819 return status;