Lines Matching refs:status
82 * Include the status endpoint if we can, even though it's optional.
119 /* status endpoint is optional; this could be patched later */
222 /* NOTE: status endpoint might need to be removed */
271 /* NOTE: status endpoint might need to be removed */
339 /* NOTE: status endpoint might need to be removed */
381 int status;
425 status = usb_ep_queue(ecm->notify, req, GFP_ATOMIC);
426 if (status < 0) {
428 DBG(cdev, "notify --> %d\n", status);
449 switch (req->status) {
461 event->bNotificationType, req->status);
514 /* respond with data transfer or status phase? */
688 int status;
708 status = gether_register_netdev(ecm_opts->net);
710 if (status)
711 return status;
727 status = usb_interface_id(c, f);
728 if (status < 0)
730 ecm->ctrl_id = status;
731 ecm_iad_descriptor.bFirstInterface = status;
733 ecm_control_intf.bInterfaceNumber = status;
734 ecm_union_desc.bMasterInterface0 = status;
736 status = usb_interface_id(c, f);
737 if (status < 0)
739 ecm->data_id = status;
741 ecm_data_nop_intf.bInterfaceNumber = status;
742 ecm_data_intf.bInterfaceNumber = status;
743 ecm_union_desc.bSlaveInterface0 = status;
745 status = -ENODEV;
758 /* NOTE: a status/notification endpoint is *OPTIONAL* but we
767 status = -ENOMEM;
793 status = usb_assign_descriptors(f, ecm_fs_function, ecm_hs_function,
795 if (status)
819 ERROR(cdev, "%s: can't bind, err %d\n", f->name, status);
821 return status;
926 int status;
938 status = gether_get_host_addr_cdc(opts->net, ecm->ethaddr,
940 if (status < 12) {