Lines Matching defs:input
151 unsigned int input;
153 ret = sscanf(buf, "%u", &input);
155 if (ret != 1 || input > MAX_SAMPLING_DOWN_FACTOR || input < 1)
158 dbs_data->sampling_down_factor = input;
167 unsigned int input;
169 ret = sscanf(buf, "%u", &input);
171 if (ret != 1 || input > 100 || input <= cs_tuners->down_threshold)
174 dbs_data->up_threshold = input;
183 unsigned int input;
185 ret = sscanf(buf, "%u", &input);
188 if (ret != 1 || input < 1 || input > 100 ||
189 input >= dbs_data->up_threshold)
192 cs_tuners->down_threshold = input;
200 unsigned int input;
203 ret = sscanf(buf, "%u", &input);
207 if (input > 1)
208 input = 1;
210 if (input == dbs_data->ignore_nice_load) /* nothing to do */
213 dbs_data->ignore_nice_load = input;
226 unsigned int input;
228 ret = sscanf(buf, "%u", &input);
233 if (input > 100)
234 input = 100;
240 cs_tuners->freq_step = input;