Searched defs:log2_irq_thresh (Results 1 - 4 of 4) sorted by relevance

/drivers/usb/host/
H A Dehci-hcd.c91 static int log2_irq_thresh = 0; // 0 to 6 variable
92 module_param (log2_irq_thresh, int, S_IRUGO);
93 MODULE_PARM_DESC (log2_irq_thresh, "log2 IRQ latency, 1-64 microframes");
529 if (log2_irq_thresh < 0 || log2_irq_thresh > 6)
530 log2_irq_thresh = 0;
531 temp = 1 << (16 + log2_irq_thresh);
H A Doxu210hp-hcd.c228 static int log2_irq_thresh; /* 0 to 6 */ variable
229 module_param(log2_irq_thresh, int, S_IRUGO);
230 MODULE_PARM_DESC(log2_irq_thresh, "log2 IRQ latency, 1-64 microframes");
2641 if (log2_irq_thresh < 0 || log2_irq_thresh > 6)
2642 log2_irq_thresh = 0;
2643 temp = 1 << (16 + log2_irq_thresh);
H A Dfotg210-hcd.c78 static int log2_irq_thresh; /* 0 to 6 */ variable
79 module_param(log2_irq_thresh, int, S_IRUGO);
80 MODULE_PARM_DESC(log2_irq_thresh, "log2 IRQ latency, 1-64 microframes");
4363 * by the per-urb URB_NO_INTERRUPT hint, the log2_irq_thresh module parameter,
5207 if (log2_irq_thresh < 0 || log2_irq_thresh > 6)
5208 log2_irq_thresh = 0;
5209 temp = 1 << (16 + log2_irq_thresh);
H A Dfusbh200-hcd.c77 static int log2_irq_thresh = 0; // 0 to 6 variable
78 module_param (log2_irq_thresh, int, S_IRUGO);
79 MODULE_PARM_DESC (log2_irq_thresh, "log2 IRQ latency, 1-64 microframes");
4298 * by the per-urb URB_NO_INTERRUPT hint, the log2_irq_thresh module parameter,
5132 if (log2_irq_thresh < 0 || log2_irq_thresh > 6)
5133 log2_irq_thresh = 0;
5134 temp = 1 << (16 + log2_irq_thresh);

Completed in 106 milliseconds