Lines Matching refs:input
303 unsigned int input; in store_sampling_rate() local
305 ret = sscanf(buf, "%u", &input); in store_sampling_rate()
309 update_sampling_rate(dbs_data, input); in store_sampling_rate()
317 unsigned int input; in store_io_is_busy() local
321 ret = sscanf(buf, "%u", &input); in store_io_is_busy()
324 od_tuners->io_is_busy = !!input; in store_io_is_busy()
340 unsigned int input; in store_up_threshold() local
342 ret = sscanf(buf, "%u", &input); in store_up_threshold()
344 if (ret != 1 || input > MAX_FREQUENCY_UP_THRESHOLD || in store_up_threshold()
345 input < MIN_FREQUENCY_UP_THRESHOLD) { in store_up_threshold()
349 od_tuners->up_threshold = input; in store_up_threshold()
357 unsigned int input, j; in store_sampling_down_factor() local
359 ret = sscanf(buf, "%u", &input); in store_sampling_down_factor()
361 if (ret != 1 || input > MAX_SAMPLING_DOWN_FACTOR || input < 1) in store_sampling_down_factor()
363 od_tuners->sampling_down_factor = input; in store_sampling_down_factor()
378 unsigned int input; in store_ignore_nice_load() local
383 ret = sscanf(buf, "%u", &input); in store_ignore_nice_load()
387 if (input > 1) in store_ignore_nice_load()
388 input = 1; in store_ignore_nice_load()
390 if (input == od_tuners->ignore_nice_load) { /* nothing to do */ in store_ignore_nice_load()
393 od_tuners->ignore_nice_load = input; in store_ignore_nice_load()
413 unsigned int input; in store_powersave_bias() local
415 ret = sscanf(buf, "%u", &input); in store_powersave_bias()
420 if (input > 1000) in store_powersave_bias()
421 input = 1000; in store_powersave_bias()
423 od_tuners->powersave_bias = input; in store_powersave_bias()