]> rtime.felk.cvut.cz Git - linux-imx.git/commitdiff
staging: comedi: pcmuio: remove some boilerplate comments
authorH Hartley Sweeten <hsweeten@visionengravers.com>
Tue, 4 Jun 2013 01:03:31 +0000 (18:03 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 5 Jun 2013 22:33:32 +0000 (15:33 -0700)
These comments are boilerplate from the 'skel' driver. Just remove
them.

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

index 02ffc78e99005bd3e74609cf8ee47a90b749f80d..ff07d7010977af154b287ce845609576af44e1c1 100644 (file)
@@ -164,7 +164,6 @@ static const struct pcmuio_board pcmuio_boards[] = {
        },
 };
 
-/* this structure is for data unique to this subdevice.  */
 struct pcmuio_subdev_private {
        /* mapping of halfwords (bytes) in port/chanarray to iobase */
        unsigned long iobases[PORTS_PER_SUBDEV];
@@ -187,9 +186,6 @@ struct pcmuio_subdev_private {
        } intr;
 };
 
-/* this structure is for data unique to this hardware driver.  If
-   several hardware drivers keep similar information in this structure,
-   feel free to suggest moving the variable to the struct comedi_device struct.  */
 struct pcmuio_private {
        struct {
                unsigned char pagelock; /* current page and lock */
@@ -203,11 +199,6 @@ struct pcmuio_private {
        struct pcmuio_subdev_private *sprivs;
 };
 
-/* DIO devices are slightly special.  Although it is possible to
- * implement the insn_read/insn_write interface, it is much more
- * useful to applications if you implement the insn_bits interface.
- * This allows packed reading/writing of the DIO channels.  The
- * comedi core can convert between insn_bits and insn_read/write */
 static int pcmuio_dio_insn_bits(struct comedi_device *dev,
                                struct comedi_subdevice *s,
                                struct comedi_insn *insn, unsigned int *data)
@@ -283,10 +274,6 @@ static int pcmuio_dio_insn_bits(struct comedi_device *dev,
        return insn->n;
 }
 
-/* The input or output configuration of each digital line is
- * configured by a special insn_config instruction.  chanspec
- * contains the channel to be changed, and data[0] contains the
- * value COMEDI_INPUT or COMEDI_OUTPUT. */
 static int pcmuio_dio_insn_config(struct comedi_device *dev,
                                  struct comedi_subdevice *s,
                                  struct comedi_insn *insn, unsigned int *data)