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

staging: comedi: addi_apci_3120: remove apci3120_ai_insn_config()



This function does not follow the comedi API for (*insn_config) functions.
It's also no long needed. Just remove it.

Signed-off-by: default avatarH Hartley Sweeten <hsweeten@visionengravers.com>
Reviewed-by: default avatarIan Abbott <abbotti@mev.co.uk>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 7ee779a2
Loading
Loading
Loading
Loading
+0 −15
Original line number Diff line number Diff line
@@ -104,21 +104,6 @@ This program is distributed in the hope that it will be useful, but WITHOUT ANY

#define APCI3120_COUNTER		3

static int apci3120_ai_insn_config(struct comedi_device *dev,
				   struct comedi_subdevice *s,
				   struct comedi_insn *insn,
				   unsigned int *data)
{
	struct apci3120_private *devpriv = dev->private;

	if (data[0] != APCI3120_EOC_MODE)
		return -1;

	devpriv->b_InterruptMode = APCI3120_EOC_MODE;

	return insn->n;
}

static int apci3120_setup_chan_list(struct comedi_device *dev,
				    struct comedi_subdevice *s,
				    int n_chan, unsigned int *chanlist)
+0 −1
Original line number Diff line number Diff line
@@ -381,7 +381,6 @@ static int apci3120_auto_attach(struct comedi_device *dev,
	s->n_chan	= 16;
	s->maxdata	= this_board->ai_is_16bit ? 0xffff : 0x0fff;
	s->range_table	= &apci3120_ai_range;
	s->insn_config	= apci3120_ai_insn_config;
	s->insn_read	= apci3120_ai_insn_read;
	if (0 /* dev->irq */) {
		dev->read_subdev = s;