Lines Matching refs:input
289 unsigned int input; in store_sampling_rate() local
291 ret = sscanf(buf, "%u", &input); in store_sampling_rate()
295 update_sampling_rate(dbs_data, input); in store_sampling_rate()
303 unsigned int input; in store_io_is_busy() local
307 ret = sscanf(buf, "%u", &input); in store_io_is_busy()
310 od_tuners->io_is_busy = !!input; in store_io_is_busy()
326 unsigned int input; in store_up_threshold() local
328 ret = sscanf(buf, "%u", &input); in store_up_threshold()
330 if (ret != 1 || input > MAX_FREQUENCY_UP_THRESHOLD || in store_up_threshold()
331 input < MIN_FREQUENCY_UP_THRESHOLD) { in store_up_threshold()
335 od_tuners->up_threshold = input; in store_up_threshold()
343 unsigned int input, j; in store_sampling_down_factor() local
345 ret = sscanf(buf, "%u", &input); in store_sampling_down_factor()
347 if (ret != 1 || input > MAX_SAMPLING_DOWN_FACTOR || input < 1) in store_sampling_down_factor()
349 od_tuners->sampling_down_factor = input; in store_sampling_down_factor()
364 unsigned int input; in store_ignore_nice_load() local
369 ret = sscanf(buf, "%u", &input); in store_ignore_nice_load()
373 if (input > 1) in store_ignore_nice_load()
374 input = 1; in store_ignore_nice_load()
376 if (input == od_tuners->ignore_nice_load) { /* nothing to do */ in store_ignore_nice_load()
379 od_tuners->ignore_nice_load = input; in store_ignore_nice_load()
399 unsigned int input; in store_powersave_bias() local
401 ret = sscanf(buf, "%u", &input); in store_powersave_bias()
406 if (input > 1000) in store_powersave_bias()
407 input = 1000; in store_powersave_bias()
409 od_tuners->powersave_bias = input; in store_powersave_bias()