Searched refs:log2_irq_thresh (Results 1 – 3 of 3) sorted by relevance
| /drivers/usb/host/ |
| A D | ehci-hcd.c | 80 static int log2_irq_thresh; // 0 to 6 variable 81 module_param (log2_irq_thresh, int, S_IRUGO); 82 MODULE_PARM_DESC (log2_irq_thresh, "log2 IRQ latency, 1-64 microframes"); 532 if (log2_irq_thresh < 0 || log2_irq_thresh > 6) in ehci_init() 533 log2_irq_thresh = 0; in ehci_init() 534 temp = 1 << (16 + log2_irq_thresh); in ehci_init()
|
| A D | oxu210hp-hcd.c | 631 static int log2_irq_thresh; /* 0 to 6 */ variable 632 module_param(log2_irq_thresh, int, S_IRUGO); 633 MODULE_PARM_DESC(log2_irq_thresh, "log2 IRQ latency, 1-64 microframes"); 3032 if (log2_irq_thresh < 0 || log2_irq_thresh > 6) in oxu_hcd_init() 3033 log2_irq_thresh = 0; in oxu_hcd_init() 3034 temp = 1 << (16 + log2_irq_thresh); in oxu_hcd_init()
|
| /drivers/usb/fotg210/ |
| A D | fotg210-hcd.c | 63 static int log2_irq_thresh; /* 0 to 6 */ variable 64 module_param(log2_irq_thresh, int, S_IRUGO); 65 MODULE_PARM_DESC(log2_irq_thresh, "log2 IRQ latency, 1-64 microframes"); 4963 if (log2_irq_thresh < 0 || log2_irq_thresh > 6) in hcd_fotg210_init() 4964 log2_irq_thresh = 0; in hcd_fotg210_init() 4965 temp = 1 << (16 + log2_irq_thresh); in hcd_fotg210_init()
|
Completed in 27 milliseconds