Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit d46bc00c authored by Hari Prasath Gujulan Elango's avatar Hari Prasath Gujulan Elango Committed by Greg Kroah-Hartman
Browse files

staging: comedi: amplc_pci230: rename 'todo' variable



This patch renames the very generic variable name 'todo' to
nsamples.

Signed-off-by: default avatarHari Prasath Gujulan Elango <hgujulan@visteon.com>
Reviewed-by: default avatarIan Abbott <abbotti@mev.co.uk>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 4c05c50d
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -2011,17 +2011,17 @@ static void pci230_handle_ai(struct comedi_device *dev,
	struct comedi_cmd *cmd = &async->cmd;
	unsigned int status_fifo;
	unsigned int i;
	unsigned int todo;
	unsigned int nsamples;
	unsigned int fifoamount;
	unsigned short val;

	/* Determine number of samples to read. */
	todo = comedi_nsamples_left(s, PCI230_ADC_FIFOLEVEL_HALFFULL);
	if (todo == 0)
	nsamples = comedi_nsamples_left(s, PCI230_ADC_FIFOLEVEL_HALFFULL);
	if (nsamples == 0)
		return;

	fifoamount = 0;
	for (i = 0; i < todo; i++) {
	for (i = 0; i < nsamples; i++) {
		if (fifoamount == 0) {
			/* Read FIFO state. */
			status_fifo = inw(devpriv->daqio + PCI230_ADCCON);