Home | History | Annotate | Download | only in bktr

Lines Matching defs:counts

1315 	struct meteor_counts	*counts;
1479 case METEORSCOUNT: /* (re)set error counts */
1480 counts = (struct meteor_counts *) arg;
1481 bktr->fifo_errors = counts->fifo_errors;
1482 bktr->dma_errors = counts->dma_errors;
1483 bktr->frames_captured = counts->frames_captured;
1484 bktr->even_fields_captured = counts->even_fields_captured;
1485 bktr->odd_fields_captured = counts->odd_fields_captured;
1488 case METEORGCOUNT: /* get error counts */
1489 counts = (struct meteor_counts *) arg;
1490 counts->fifo_errors = bktr->fifo_errors;
1491 counts->dma_errors = bktr->dma_errors;
1492 counts->frames_captured = bktr->frames_captured;
1493 counts->even_fields_captured = bktr->even_fields_captured;
1494 counts->odd_fields_captured = bktr->odd_fields_captured;