Lines Matching defs:max_count
278 int ret, i, count_skip = 0, max_count;
285 max_count = count_skip + ch->oversampling_ratio;
287 max_count = 1;
290 if (sizeof(struct tsc2046_adc_atom) * max_count > PAGE_SIZE)
293 struct tsc2046_adc_atom *tx_buf __free(kfree) = kcalloc(max_count,
299 struct tsc2046_adc_atom *rx_buf __free(kfree) = kcalloc(max_count,
311 for (i = 0; i < max_count - 1; i++)
320 xfer.len = sizeof(*tx_buf) * max_count;
337 for (i = 0; i < max_count - count_skip; i++) {
342 return DIV_ROUND_UP(val_normalized, max_count - count_skip);
351 unsigned int max_count, count_skip;
358 max_count = count_skip + ch->oversampling_ratio;
362 cur->count = max_count;
365 return sizeof(*priv->tx) * max_count;