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

Commit 1330af4c authored by H Hartley Sweeten's avatar H Hartley Sweeten Committed by Greg Kroah-Hartman
Browse files

staging: comedi: ni_labpc: fix labpc_eeprom_insn_read()



The comedi core expects the (*insn_read) operations to read insn->n
values and return the number of values actually read.

Make this function work like the core expects.

Signed-off-by: default avatarH Hartley Sweeten <hsweeten@visionengravers.com>
Cc: Ian Abbott <abbotti@mev.co.uk>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 63a93381
Loading
Loading
Loading
Loading
+5 −2
Original line number Diff line number Diff line
@@ -1591,10 +1591,13 @@ static int labpc_eeprom_insn_read(struct comedi_device *dev,
				  unsigned int *data)
{
	struct labpc_private *devpriv = dev->private;
	unsigned int chan = CR_CHAN(insn->chanspec);
	int i;

	data[0] = devpriv->eeprom_data[CR_CHAN(insn->chanspec)];
	for (i = 0; i < insn->n; i++)
		data[i] = devpriv->eeprom_data[chan];

	return 1;
	return insn->n;
}

int labpc_common_attach(struct comedi_device *dev, unsigned long iobase,