Lines Matching defs:temp
136 u32 temp;
139 temp = readl(&xhci->op_regs->command);
140 temp |= (CMD_RUN);
142 temp);
143 writel(temp, &xhci->op_regs->command);
330 u32 temp;
341 temp = readl(rhub->ports[i]->addr);
342 if ((temp & PORT_PLS_MASK) == USB_SS_PORT_LS_COMP_MOD) {
461 u32 temp;
470 temp = readl(&xhci->op_regs->command);
471 temp |= (CMD_EIE);
472 writel(temp, &xhci->op_regs->command);
507 u32 temp;
529 temp = readl(&ir->ir_set->irq_control);
530 temp &= ~ER_IRQ_INTERVAL_MASK;
531 temp |= (xhci->imod_interval / 250) & ER_IRQ_INTERVAL_MASK;
532 writel(temp, &ir->ir_set->irq_control);
573 u32 temp;
608 temp = readl(&xhci->op_regs->status);
609 writel((temp & ~0x1fff) | STS_EINT, &xhci->op_regs->status);
966 u32 command, temp = 0;
1029 temp = readl(&xhci->op_regs->status);
1032 if ((temp & (STS_SRE | STS_HCE)) &&
1036 xhci_warn(xhci, "xHC error in resume, USBSTS 0x%x, Reinit\n", temp);
1061 temp = readl(&xhci->op_regs->status);
1062 writel((temp & ~0x1fff) | STS_EINT, &xhci->op_regs->status);
1171 void *temp;
1179 temp = kzalloc_node(buf_len, GFP_ATOMIC,
1181 if (!temp)
1186 temp, buf_len, 0);
1188 urb->transfer_buffer = temp;
1197 kfree(temp);
1640 u32 temp;
1673 temp = readl(&xhci->op_regs->status);
1674 if (temp == ~(u32)0 || xhci->xhc_state & XHCI_STATE_DYING) {