mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-04-02 01:08:26 -04:00
staging: comedi: amplc_pci230: rename pci230_ai_rinsn()
Rename the AI subdevice "insn_read" handler function `pci230_ai_rinsn()` to `pci230_ai_insn_read()` for consistency. Signed-off-by: Ian Abbott <abbotti@mev.co.uk> Reviewed-by: H Hartley Sweeten <hsweeten@visionengravers.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
d9a687958e
commit
d4c5cc3118
@@ -774,9 +774,9 @@ static int pci230_ai_eoc(struct comedi_device *dev,
|
||||
return -EBUSY;
|
||||
}
|
||||
|
||||
static int pci230_ai_rinsn(struct comedi_device *dev,
|
||||
struct comedi_subdevice *s, struct comedi_insn *insn,
|
||||
unsigned int *data)
|
||||
static int pci230_ai_insn_read(struct comedi_device *dev,
|
||||
struct comedi_subdevice *s,
|
||||
struct comedi_insn *insn, unsigned int *data)
|
||||
{
|
||||
struct pci230_private *devpriv = dev->private;
|
||||
unsigned int n;
|
||||
@@ -2649,7 +2649,7 @@ static int pci230_auto_attach(struct comedi_device *dev,
|
||||
s->n_chan = 16;
|
||||
s->maxdata = (1 << thisboard->ai_bits) - 1;
|
||||
s->range_table = &pci230_ai_range;
|
||||
s->insn_read = pci230_ai_rinsn;
|
||||
s->insn_read = pci230_ai_insn_read;
|
||||
s->len_chanlist = 256; /* but there are restrictions. */
|
||||
if (dev->irq) {
|
||||
dev->read_subdev = s;
|
||||
|
||||
Reference in New Issue
Block a user