Lines Matching refs:input
207 unsigned int input;
210 ret = sscanf(buf, "%u", &input);
213 dbs_data->io_is_busy = !!input;
225 unsigned int input;
227 ret = sscanf(buf, "%u", &input);
229 if (ret != 1 || input > MAX_FREQUENCY_UP_THRESHOLD ||
230 input < MIN_FREQUENCY_UP_THRESHOLD) {
234 dbs_data->up_threshold = input;
243 unsigned int input;
245 ret = sscanf(buf, "%u", &input);
247 if (ret != 1 || input > MAX_SAMPLING_DOWN_FACTOR || input < 1)
250 dbs_data->sampling_down_factor = input;
270 unsigned int input;
273 ret = sscanf(buf, "%u", &input);
277 if (input > 1)
278 input = 1;
280 if (input == dbs_data->ignore_nice_load) { /* nothing to do */
283 dbs_data->ignore_nice_load = input;
297 unsigned int input;
299 ret = sscanf(buf, "%u", &input);
304 if (input > 1000)
305 input = 1000;
307 od_tuners->powersave_bias = input;