staging: comedi: ni_daq_700: add mux settling delay
authorIan Abbott <abbotti@mev.co.uk>
Mon, 19 May 2014 10:29:04 +0000 (11:29 +0100)
committerJiri Slaby <jslaby@suse.cz>
Fri, 20 Jun 2014 15:34:05 +0000 (17:34 +0200)
commit ffed54dced86723f352323f15789d9ad6bee25e1 upstream.

I got a patch from the original author, Fred Brooks, to add a small
settling delay after setting the AI channel multiplexor.  The lack of
delay resulted in unstable or scrambled data on faster processors.

Signed-off-by: Ian Abbott <abbotti@mev.co.uk>
Reported-by: Fred Brooks <nsaspook@nsaspook.com>
Signed-off-by: Jiri Slaby <jslaby@suse.cz>
drivers/staging/comedi/drivers/ni_daq_700.c

index 404f83de276da21bd00cb4d17c7b87eb9fd9743d..40ca2be1d9d2c86bf48a95640b28a617da8bb732 100644 (file)
@@ -118,6 +118,8 @@ static int daq700_ai_rinsn(struct comedi_device *dev,
        /* write channel to multiplexer */
        /* set mask scan bit high to disable scanning */
        outb(chan | 0x80, dev->iobase + CMD_R1);
+       /* mux needs 2us to really settle [Fred Brooks]. */
+       udelay(2);
 
        /* convert n samples */
        for (n = 0; n < insn->n; n++) {