Lines Matching defs:stall
142 * opportunity to stall the control transfer if needed.
165 /* A protocol stall completes the control transaction. */
415 /* When halting the control endpoint, stall both IN and OUT. */
523 bool stall;
556 stall = __isp1760_udc_set_halt(ep, false);
558 stall = false;
560 if (!stall)
565 return stall;
594 stall = __isp1760_udc_set_halt(ep, true);
595 if (!stall)
600 return stall;
622 stall = udc->driver->setup(&udc->gadget, req) < 0;
623 if (stall)
649 bool stall = false;
695 stall = isp1760_ep0_setup_standard(udc, &req.r);
697 stall = udc->driver->setup(&udc->gadget, &req.r) < 0;
699 if (stall)
933 static int __isp1760_ep_set_halt(struct isp1760_ep *uep, bool stall, bool wedge)
945 if (WARN_ON(udc->ep0_state == ISP1760_CTRL_SETUP || !stall ||
967 ret = __isp1760_udc_set_halt(uep, stall);
982 else if (!stall)