Lines Matching defs:input
1084 static void set_power_ctl_ee_state(bool input)
1090 if (input) {
1307 unsigned int input;
1310 ret = sscanf(buf, "%u", &input);
1331 global.no_turbo = clamp_t(int, input, 0, 1);
1392 unsigned int input;
1395 ret = sscanf(buf, "%u", &input);
1408 global.max_perf_pct = clamp_t(int, input, global.min_perf_pct, 100);
1425 unsigned int input;
1428 ret = sscanf(buf, "%u", &input);
1441 global.min_perf_pct = clamp_t(int, input,
1466 unsigned int input;
1469 ret = kstrtouint(buf, 10, &input);
1474 hwp_boost = !!input;
1495 bool input;
1498 ret = kstrtobool(buf, &input);
1502 set_power_ctl_ee_state(input);
2567 /* Normalize user input to [min_perf, max_perf] */