Searched defs:maximum_speed (Results 1 - 3 of 3) sorted by relevance

/drivers/usb/dwc3/
H A Dcore.c62 static char *maximum_speed = "super"; variable
63 module_param(maximum_speed, charp, 0);
64 MODULE_PARM_DESC(maximum_speed, "Maximum supported speed.");
463 if (!strncmp("super", maximum_speed, 5))
464 dwc->maximum_speed = DWC3_DCFG_SUPERSPEED;
465 else if (!strncmp("high", maximum_speed, 4))
466 dwc->maximum_speed = DWC3_DCFG_HIGHSPEED;
467 else if (!strncmp("full", maximum_speed, 4))
468 dwc->maximum_speed = DWC3_DCFG_FULLSPEED1;
469 else if (!strncmp("low", maximum_speed,
[all...]
H A Dcore.h553 * @maximum_speed: maximum speed requested (mainly for testing purposes)
601 u32 maximum_speed; member in struct:dwc3
/drivers/cpufreq/
H A Dpowernow-k7.c98 static unsigned int maximum_speed; variable
202 if (speed > maximum_speed)
203 maximum_speed = speed;
417 if (speed > maximum_speed)
418 maximum_speed = speed;
660 maximum_speed = 0;
679 minimum_speed/1000, maximum_speed/1000);

Completed in 133 milliseconds