From 8091fb739aab867e24d53bda16af2159baa04fd0 Mon Sep 17 00:00:00 2001 From: H Hartley Sweeten Date: Mon, 10 Jun 2013 10:17:12 -0700 Subject: [PATCH] staging: comedi: pcl724: fix 96 DIO configuration option 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 Reviewed-by: Ian Abbott Signed-off-by: Greg Kroah-Hartman --- drivers/staging/comedi/drivers/pcl724.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/staging/comedi/drivers/pcl724.c b/drivers/staging/comedi/drivers/pcl724.c index 61479bd2bdc4..68d425f72d1c 100644 --- a/drivers/staging/comedi/drivers/pcl724.c +++ b/drivers/staging/comedi/drivers/pcl724.c @@ -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; } -- 2.34.1