]> Pileus Git - ~andy/linux/commitdiff
staging: comedi: pcl724: fix 96 DIO configuration option
authorH Hartley Sweeten <hsweeten@visionengravers.com>
Mon, 10 Jun 2013 17:17:12 +0000 (10:17 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 12 Jun 2013 00:16:48 +0000 (17:16 -0700)
According to the comedi documentation at the beginning of the file,
configuration option 2 sets the number of DIO channels on the boards
that support 144 or 96 channels.

Fix the (*attach) to use the correct configuration option.

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/pcl724.c

index 61479bd2bdc45642babfd3e804513319ac6f12fd..68d425f72d1c33903de804e0a990d802c179f7cd 100644 (file)
@@ -106,7 +106,7 @@ static int pcl724_attach(struct comedi_device *dev,
 
        /* Handle PCL-724 in 96 DIO configuration */
        if (board->can_have96 &&
-           (it->options[1] == 1 || it->options[1] == 96)) {
+           (it->options[2] == 1 || it->options[2] == 96)) {
                iorange = 0x10;
                n_subdevices = 4;
        }