Home
last modified time | relevance | path

Searched refs:added_ctxs (Results 1 – 3 of 3) sorted by relevance

/linux-6.1.9/drivers/usb/cdns3/
Dcdnsp-gadget.c933 u32 added_ctxs; in cdnsp_gadget_ep_enable() local
950 added_ctxs = cdnsp_get_endpoint_flag(desc); in cdnsp_gadget_ep_enable()
951 if (added_ctxs == SLOT_FLAG || added_ctxs == EP0_FLAG) { in cdnsp_gadget_ep_enable()
981 ctrl_ctx->add_flags = cpu_to_le32(added_ctxs); in cdnsp_gadget_ep_enable()
/linux-6.1.9/drivers/usb/host/
Dxhci.c1514 unsigned int xhci_last_valid_endpoint(u32 added_ctxs) in xhci_last_valid_endpoint() argument
1516 return fls(added_ctxs) - 1; in xhci_last_valid_endpoint()
2011 u32 added_ctxs; in xhci_add_endpoint() local
2026 added_ctxs = xhci_get_endpoint_flag(&ep->desc); in xhci_add_endpoint()
2027 if (added_ctxs == SLOT_FLAG || added_ctxs == EP0_FLAG) { in xhci_add_endpoint()
2033 __func__, added_ctxs); in xhci_add_endpoint()
2051 !(le32_to_cpu(ctrl_ctx->drop_flags) & added_ctxs)) { in xhci_add_endpoint()
2061 if (le32_to_cpu(ctrl_ctx->add_flags) & added_ctxs) { in xhci_add_endpoint()
2078 ctrl_ctx->add_flags |= cpu_to_le32(added_ctxs); in xhci_add_endpoint()
Dxhci.h2046 unsigned int xhci_last_valid_endpoint(u32 added_ctxs);