Lines Matching defs:added_ctxs
1372 * e.g. ep 1 IN (with epnum 0x81) => added_ctxs = 0b1000
1375 unsigned int xhci_last_valid_endpoint(u32 added_ctxs)
1377 return fls(added_ctxs) - 1;
1874 u32 added_ctxs;
1889 added_ctxs = xhci_get_endpoint_flag(&ep->desc);
1890 if (added_ctxs == SLOT_FLAG || added_ctxs == EP0_FLAG) {
1896 __func__, added_ctxs);
1914 !(le32_to_cpu(ctrl_ctx->drop_flags) & added_ctxs)) {
1924 if (le32_to_cpu(ctrl_ctx->add_flags) & added_ctxs) {
1950 ctrl_ctx->add_flags |= cpu_to_le32(added_ctxs);
3051 u32 added_ctxs;
3077 added_ctxs = xhci_get_endpoint_flag_from_index(ep_index);
3080 added_ctxs, added_ctxs);