Lines Matching defs:input
153 unsigned int input;
155 ret = sscanf(buf, "%u", &input);
157 if (ret != 1 || input > MAX_SAMPLING_DOWN_FACTOR || input < 1)
160 dbs_data->sampling_down_factor = input;
169 unsigned int input;
171 ret = sscanf(buf, "%u", &input);
173 if (ret != 1 || input > 100 || input <= cs_tuners->down_threshold)
176 dbs_data->up_threshold = input;
185 unsigned int input;
187 ret = sscanf(buf, "%u", &input);
190 if (ret != 1 || input < 1 || input > 100 ||
191 input >= dbs_data->up_threshold)
194 cs_tuners->down_threshold = input;
202 unsigned int input;
205 ret = sscanf(buf, "%u", &input);
209 if (input > 1)
210 input = 1;
212 if (input == dbs_data->ignore_nice_load) /* nothing to do */
215 dbs_data->ignore_nice_load = input;
228 unsigned int input;
230 ret = sscanf(buf, "%u", &input);
235 if (input > 100)
236 input = 100;
242 cs_tuners->freq_step = input;