Lines Matching defs:input
933 static void set_power_ctl_ee_state(bool input)
939 if (input) {
1150 unsigned int input;
1153 ret = sscanf(buf, "%u", &input);
1174 global.no_turbo = clamp_t(int, input, 0, 1);
1236 unsigned int input;
1239 ret = sscanf(buf, "%u", &input);
1252 global.max_perf_pct = clamp_t(int, input, global.min_perf_pct, 100);
1269 unsigned int input;
1272 ret = sscanf(buf, "%u", &input);
1285 global.min_perf_pct = clamp_t(int, input,
1310 unsigned int input;
1313 ret = kstrtouint(buf, 10, &input);
1318 hwp_boost = !!input;
1339 bool input;
1342 ret = kstrtobool(buf, &input);
1346 set_power_ctl_ee_state(input);
2229 /* Normalize user input to [min_perf, max_perf] */