Home
last modified time | relevance | path

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

/linux-6.15/drivers/usb/cdns3/
H A Dcdnsp-gadget.c954 u32 added_ctxs; in cdnsp_gadget_ep_enable() local
971 added_ctxs = cdnsp_get_endpoint_flag(desc); in cdnsp_gadget_ep_enable()
972 if (added_ctxs == SLOT_FLAG || added_ctxs == EP0_FLAG) { in cdnsp_gadget_ep_enable()
1002 ctrl_ctx->add_flags = cpu_to_le32(added_ctxs); in cdnsp_gadget_ep_enable()
/linux-6.15/drivers/usb/host/
H A Dxhci.c1405 unsigned int xhci_last_valid_endpoint(u32 added_ctxs) in xhci_last_valid_endpoint() argument
1407 return fls(added_ctxs) - 1; in xhci_last_valid_endpoint()
1904 u32 added_ctxs; in xhci_add_endpoint() local
1919 added_ctxs = xhci_get_endpoint_flag(&ep->desc); in xhci_add_endpoint()
1920 if (added_ctxs == SLOT_FLAG || added_ctxs == EP0_FLAG) { in xhci_add_endpoint()
1926 __func__, added_ctxs); in xhci_add_endpoint()
1944 !(le32_to_cpu(ctrl_ctx->drop_flags) & added_ctxs)) { in xhci_add_endpoint()
1954 if (le32_to_cpu(ctrl_ctx->add_flags) & added_ctxs) { in xhci_add_endpoint()
1971 ctrl_ctx->add_flags |= cpu_to_le32(added_ctxs); in xhci_add_endpoint()
H A Dxhci.h1793 unsigned int xhci_last_valid_endpoint(u32 added_ctxs);