Lines Matching refs:status
531 int status;
582 status = usb_ep_queue(ncm->notify, req, GFP_ATOMIC);
584 if (status < 0) {
586 DBG(cdev, "notify --> %d\n", status);
616 switch (req->status) {
629 event->bNotificationType, req->status);
646 if (req->status || req->actual != req->length) {
828 /* respond with data transfer or status phase? */
1421 int status = 0;
1442 status = gether_register_netdev(ncm_opts->net);
1445 if (status)
1453 status = PTR_ERR(us);
1463 status = usb_interface_id(c, f);
1464 if (status < 0)
1466 ncm->ctrl_id = status;
1467 ncm_iad_desc.bFirstInterface = status;
1469 ncm_control_intf.bInterfaceNumber = status;
1470 ncm_union_desc.bMasterInterface0 = status;
1476 status = usb_interface_id(c, f);
1477 if (status < 0)
1479 ncm->data_id = status;
1481 ncm_data_nop_intf.bInterfaceNumber = status;
1482 ncm_data_intf.bInterfaceNumber = status;
1483 ncm_union_desc.bSlaveInterface0 = status;
1485 status = -ENODEV;
1503 status = -ENOMEM;
1530 status = usb_assign_descriptors(f, ncm_fs_function, ncm_hs_function,
1532 if (status)
1561 ERROR(cdev, "%s: can't bind, err %d\n", f->name, status);
1563 return status;
1692 int status;
1704 status = gether_get_host_addr_cdc(opts->net, ncm->ethaddr,
1706 if (status < 12) { /* strlen("01234567890a") */