Searched refs:log2_irq_thresh (Results 1 – 4 of 4) sorted by relevance
/Linux-v4.19/drivers/usb/host/ |
D | ehci-hcd.c | 78 static int log2_irq_thresh = 0; // 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"); 531 if (log2_irq_thresh < 0 || log2_irq_thresh > 6) in ehci_init() 532 log2_irq_thresh = 0; in ehci_init() 533 temp = 1 << (16 + log2_irq_thresh); in ehci_init()
|
D | oxu210hp-hcd.c | 215 static int log2_irq_thresh; /* 0 to 6 */ variable 216 module_param(log2_irq_thresh, int, S_IRUGO); 217 MODULE_PARM_DESC(log2_irq_thresh, "log2 IRQ latency, 1-64 microframes"); 2618 if (log2_irq_thresh < 0 || log2_irq_thresh > 6) in oxu_hcd_init() 2619 log2_irq_thresh = 0; in oxu_hcd_init() 2620 temp = 1 << (16 + log2_irq_thresh); in oxu_hcd_init()
|
D | fotg210-hcd.c | 61 static int log2_irq_thresh; /* 0 to 6 */ variable 62 module_param(log2_irq_thresh, int, S_IRUGO); 63 MODULE_PARM_DESC(log2_irq_thresh, "log2 IRQ latency, 1-64 microframes"); 4971 if (log2_irq_thresh < 0 || log2_irq_thresh > 6) in hcd_fotg210_init() 4972 log2_irq_thresh = 0; in hcd_fotg210_init() 4973 temp = 1 << (16 + log2_irq_thresh); in hcd_fotg210_init()
|
/Linux-v4.19/Documentation/usb/ |
D | ehci.txt | 105 log2_irq_thresh (default 0):
|