]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
staging: comedi: s526: remove #if 0'ed out code block
authorH Hartley Sweeten <hsweeten@visionengravers.com>
Mon, 17 Aug 2015 23:58:26 +0000 (16:58 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sun, 13 Sep 2015 01:24:23 +0000 (18:24 -0700)
This #if 0'ed out code is not necessary. It's actually just a copy
of the psuedo code in the S526 Hardware Manual that shows an example
of a counter application. Remove it.

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

index 801413d7b0c38754d027c8e34369974c067abefa..43f9c0c3b3fc503301cb4c27b51f9b9717d5ba49 100644 (file)
@@ -188,35 +188,6 @@ static int s526_gpct_insn_config(struct comedi_device *dev,
                 */
                devpriv->gpct_config[chan] = data[0];
 
-#if 0
-               /*  Example of Counter Application */
-               /* One-shot (software trigger) */
-               cmReg.reg.coutSource = 0;       /*  out RCAP */
-               cmReg.reg.coutPolarity = 1;     /*  Polarity inverted */
-               cmReg.reg.autoLoadResetRcap = 0;/*  Auto load disabled */
-               cmReg.reg.hwCtEnableSource = 3; /*  NOT RCAP */
-               cmReg.reg.ctEnableCtrl = 2;     /*  Hardware */
-               cmReg.reg.clockSource = 2;      /*  Internal */
-               cmReg.reg.countDir = 1; /*  Down */
-               cmReg.reg.countDirCtrl = 1;     /*  Software */
-               cmReg.reg.outputRegLatchCtrl = 0;       /*  latch on read */
-               cmReg.reg.preloadRegSel = 0;    /*  PR0 */
-               cmReg.reg.reserved = 0;
-
-               outw(cmReg.value, dev->iobase + S526_GPCT_MODE_REG(chan));
-
-               s526_gpct_write(dev, chan, 0x0013c68);
-
-               /*  Reset the counter */
-               outw(0x8000, dev->iobase + S526_GPCT_CTRL_REG(chan));
-               /*  Load the counter from PR0 */
-               outw(0x4000, dev->iobase + S526_GPCT_CTRL_REG(chan));
-
-               /*  Reset RCAP (fires one-shot) */
-               outw(0x0008, dev->iobase + S526_GPCT_CTRL_REG(chan));
-
-#endif
-
 #if 1
                /*  Set Counter Mode Register */
                cmReg.value = data[1] & 0xffff;