Lines Matching defs:input
209 unsigned int input;
212 ret = sscanf(buf, "%u", &input);
215 dbs_data->io_is_busy = !!input;
227 unsigned int input;
229 ret = sscanf(buf, "%u", &input);
231 if (ret != 1 || input > MAX_FREQUENCY_UP_THRESHOLD ||
232 input < MIN_FREQUENCY_UP_THRESHOLD) {
236 dbs_data->up_threshold = input;
245 unsigned int input;
247 ret = sscanf(buf, "%u", &input);
249 if (ret != 1 || input > MAX_SAMPLING_DOWN_FACTOR || input < 1)
252 dbs_data->sampling_down_factor = input;
272 unsigned int input;
275 ret = sscanf(buf, "%u", &input);
279 if (input > 1)
280 input = 1;
282 if (input == dbs_data->ignore_nice_load) { /* nothing to do */
285 dbs_data->ignore_nice_load = input;
299 unsigned int input;
301 ret = sscanf(buf, "%u", &input);
306 if (input > 1000)
307 input = 1000;
309 od_tuners->powersave_bias = input;