Searched refs:log2_irq_thresh (Results 1 – 5 of 5) sorted by relevance
/linux-4.1.27/drivers/usb/host/ |
D | ehci-hcd.c | 91 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"); 534 if (log2_irq_thresh < 0 || log2_irq_thresh > 6) in ehci_init() 535 log2_irq_thresh = 0; in ehci_init() 536 temp = 1 << (16 + log2_irq_thresh); in ehci_init()
|
D | oxu210hp-hcd.c | 228 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"); 2640 if (log2_irq_thresh < 0 || log2_irq_thresh > 6) in oxu_hcd_init() 2641 log2_irq_thresh = 0; in oxu_hcd_init() 2642 temp = 1 << (16 + log2_irq_thresh); in oxu_hcd_init()
|
D | fusbh200-hcd.c | 77 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"); 5131 if (log2_irq_thresh < 0 || log2_irq_thresh > 6) in hcd_fusbh200_init() 5132 log2_irq_thresh = 0; in hcd_fusbh200_init() 5133 temp = 1 << (16 + log2_irq_thresh); in hcd_fusbh200_init()
|
D | fotg210-hcd.c | 78 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"); 5207 if (log2_irq_thresh < 0 || log2_irq_thresh > 6) in hcd_fotg210_init() 5208 log2_irq_thresh = 0; in hcd_fotg210_init() 5209 temp = 1 << (16 + log2_irq_thresh); in hcd_fotg210_init()
|
/linux-4.1.27/Documentation/usb/ |
D | ehci.txt | 105 log2_irq_thresh (default 0):
|