Lines Matching refs:status
263 int status;
265 status = usb_function_activate(&g->func);
266 if (status)
269 obex->port_num, status);
276 int status;
278 status = usb_function_deactivate(&g->func);
279 if (status)
282 obex->port_num, status);
307 int status;
323 status = usb_interface_id(c, f);
324 if (status < 0)
326 obex->ctrl_id = status;
328 obex_control_intf.bInterfaceNumber = status;
329 obex_cdc_union_desc.bMasterInterface0 = status;
331 status = usb_interface_id(c, f);
332 if (status < 0)
334 obex->data_id = status;
336 obex_data_nop_intf.bInterfaceNumber = status;
337 obex_data_intf.bInterfaceNumber = status;
338 obex_cdc_union_desc.bSlaveInterface0 = status;
342 status = -ENODEV;
363 status = usb_assign_descriptors(f, fs_function, hs_function, NULL,
365 if (status)
375 ERROR(cdev, "%s/%p: can't bind, err %d\n", f->name, f, status);
377 return status;