• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/usb/host/

Lines Matching defs:temp

20 		label, num, temp, \
21 (temp & RH_PS_PRSC) ? " PRSC" : "", \
22 (temp & RH_PS_OCIC) ? " OCIC" : "", \
23 (temp & RH_PS_PSSC) ? " PSSC" : "", \
24 (temp & RH_PS_PESC) ? " PESC" : "", \
25 (temp & RH_PS_CSC) ? " CSC" : "", \
27 (temp & RH_PS_LSDA) ? " LSDA" : "", \
28 (temp & RH_PS_PPS) ? " PPS" : "", \
29 (temp & RH_PS_PRS) ? " PRS" : "", \
30 (temp & RH_PS_POCI) ? " POCI" : "", \
31 (temp & RH_PS_PSS) ? " PSS" : "", \
33 (temp & RH_PS_PES) ? " PES" : "", \
34 (temp & RH_PS_CCS) ? " CCS" : "" \
134 u32 temp, enables;
196 temp = ohci_readl (ohci, &ohci->regs->control);
197 temp &= OHCI_CTRL_HCFS;
198 if (temp != OHCI_USB_RESUME) {
231 temp = ohci->hc_control;
232 temp &= OHCI_CTRL_RWC;
233 temp |= OHCI_CONTROL_INIT | OHCI_USB_OPER;
234 ohci->hc_control = temp;
235 ohci_writel (ohci, temp, &ohci->regs->control);
250 temp = 0;
257 temp |= OHCI_CLF;
263 temp |= OHCI_BLF;
272 if (temp)
273 ohci_writel (ohci, temp, &ohci->regs->cmdstatus);
562 u16 temp;
569 temp = 1 + (ohci->num_ports / 8);
570 desc->bDescLength = 7 + 2 * temp;
572 temp = 0;
574 temp |= 0x0002;
576 temp |= 0x0001;
578 temp |= 0x0010;
580 temp |= 0x0008;
581 desc->wHubCharacteristics = (__force __u16)cpu_to_hc16(ohci, temp);
647 u32 temp = 0;
662 temp = ohci_readl (ohci, portstat);
664 if (temp == ~(u32)0)
666 if (!(temp & RH_PS_PRS))
678 port, temp);
682 if (!(temp & RH_PS_CCS))
684 if (temp & RH_PS_PRSC)
710 u32 temp;
735 temp = RH_PS_CCS;
738 temp = RH_PS_PESC;
741 temp = RH_PS_POCI;
744 temp = RH_PS_PSSC;
747 temp = RH_PS_LSDA;
750 temp = RH_PS_CSC;
753 temp = RH_PS_OCIC;
756 temp = RH_PS_PRSC;
761 ohci_writel (ohci, temp,
769 temp = roothub_status (ohci) & ~(RH_HS_CRWE | RH_HS_DRWE);
770 put_unaligned_le32(temp, buf);
776 temp = roothub_portstatus (ohci, wIndex);
777 put_unaligned_le32(temp, buf);
782 dbg_port (ohci, "GetStatus", wIndex, temp);