]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
staging: comedi: addi_apci_3120: remove i_APCI3120_InsnConfigDigitalOutput()
authorH Hartley Sweeten <hartleys@visionengravers.com>
Tue, 6 Nov 2012 17:06:07 +0000 (10:06 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 13 Nov 2012 19:21:38 +0000 (11:21 -0800)
The digital outputs of the board supported by this driver are not
configurable. This driver abuses the comedi API and uses the 'insn_config'
function of the digital output subdevice to enable/disable writing to
the eeprom on the board. Remove this function.

Signed-off-by: H Hartley Sweeten <hsweeten@visionengravers.com>
Cc: Ian Abbott <abbotti@mev.co.uk>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/comedi/drivers/addi-data/hwdrv_apci3120.c
drivers/staging/comedi/drivers/addi_apci_3120.c

index 106b286724f9aaf865b317c2a1b7b2ff878aecfa..0bc4eda1f742ae493b8c027a4dc761f8efc67c2c 100644 (file)
@@ -242,8 +242,6 @@ static const struct comedi_lrange range_apci3120_ao = {
 };
 
 
-static unsigned int ui_Temp;
-
 /* FUNCTION DEFINITIONS */
 
 /*
@@ -2201,35 +2199,6 @@ static int apci3120_di_insn_bits(struct comedi_device *dev,
        return insn->n;
 }
 
-/*
- * Configure the output memory ON or OFF
- */
-static int i_APCI3120_InsnConfigDigitalOutput(struct comedi_device *dev,
-                                             struct comedi_subdevice *s,
-                                             struct comedi_insn *insn,
-                                             unsigned int *data)
-{
-       struct addi_private *devpriv = dev->private;
-
-       if ((data[0] != 0) && (data[0] != 1)) {
-               comedi_error(dev,
-                       "Not a valid Data !!! ,Data should be 1 or 0\n");
-               return -EINVAL;
-       }
-       if (data[0]) {
-               devpriv->b_OutputMemoryStatus = APCI3120_ENABLE;
-
-       } else {
-               devpriv->b_OutputMemoryStatus = APCI3120_DISABLE;
-               devpriv->b_DigitalOutputRegister = 0;
-       }
-       if (!devpriv->b_OutputMemoryStatus)
-               ui_Temp = 0;
-                               /* if(!devpriv->b_OutputMemoryStatus ) */
-
-       return insn->n;
-}
-
 static int apci3120_do_insn_bits(struct comedi_device *dev,
                                 struct comedi_subdevice *s,
                                 struct comedi_insn *insn,
index 1326a2ec42b515f438063d500162da3247d35485..f65f8271807d61c831b21bea9e3b32dbaa967eb0 100644 (file)
@@ -191,9 +191,6 @@ static int apci3120_attach_pci(struct comedi_device *dev,
        s->len_chanlist = this_board->i_NbrDoChannel;
        s->range_table = &range_digital;
        s->io_bits = 0xf;       /* all bits output */
-
-       /* insn_config - for digital output memory */
-       s->insn_config = i_APCI3120_InsnConfigDigitalOutput;
        s->insn_bits = apci3120_do_insn_bits;
 
        /*  Allocate and Initialise Timer Subdevice Structures */