Searched refs:maximum_speed (Results 1 – 5 of 5) sorted by relevance
/drivers/usb/dwc3/ |
D | core.c | 63 static char *maximum_speed = "super"; variable 64 module_param(maximum_speed, charp, 0); 65 MODULE_PARM_DESC(maximum_speed, "Maximum supported speed."); 481 if (!strncmp("super", maximum_speed, 5)) in dwc3_probe() 482 dwc->maximum_speed = DWC3_DCFG_SUPERSPEED; in dwc3_probe() 483 else if (!strncmp("high", maximum_speed, 4)) in dwc3_probe() 484 dwc->maximum_speed = DWC3_DCFG_HIGHSPEED; in dwc3_probe() 485 else if (!strncmp("full", maximum_speed, 4)) in dwc3_probe() 486 dwc->maximum_speed = DWC3_DCFG_FULLSPEED1; in dwc3_probe() 487 else if (!strncmp("low", maximum_speed, 3)) in dwc3_probe() [all …]
|
D | core.h | 699 u32 maximum_speed; member
|
D | gadget.c | 1542 reg |= dwc->maximum_speed; in dwc3_gadget_start()
|
/drivers/cpufreq/ |
D | powernow-k7.c | 98 static unsigned int maximum_speed; variable 202 if (speed > maximum_speed) in get_ranges() 203 maximum_speed = speed; in get_ranges() 415 if (speed > maximum_speed) in powernow_acpi_init() 416 maximum_speed = speed; in powernow_acpi_init() 658 maximum_speed = 0; in powernow_cpu_init() 677 minimum_speed/1000, maximum_speed/1000); in powernow_cpu_init()
|
/drivers/usb/gadget/ |
D | udc-core.c | 486 static USB_UDC_SPEED_ATTR(maximum_speed, max_speed);
|