staging: comedi: hwdrv_apci1564: tidy up apci1564_timer_insn_write()
Clear the gate and trig bits in the common code path. 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>
This commit is contained in:
parent
d9fca73c80
commit
9a2d58c7f8
1 changed files with 2 additions and 3 deletions
|
@ -60,13 +60,12 @@ static int apci1564_timer_insn_write(struct comedi_device *dev,
|
|||
unsigned int ctrl;
|
||||
|
||||
ctrl = inl(devpriv->timer + ADDI_TCW_CTRL_REG);
|
||||
ctrl &= ~(ADDI_TCW_CTRL_GATE | ADDI_TCW_CTRL_TRIG);
|
||||
switch (data[1]) {
|
||||
case 0: /* Stop The Timer */
|
||||
ctrl &= ~(ADDI_TCW_CTRL_GATE | ADDI_TCW_CTRL_TRIG |
|
||||
ADDI_TCW_CTRL_ENA);
|
||||
ctrl &= ~ADDI_TCW_CTRL_ENA;
|
||||
break;
|
||||
case 1: /* Enable the Timer */
|
||||
ctrl &= ~(ADDI_TCW_CTRL_GATE | ADDI_TCW_CTRL_TRIG);
|
||||
ctrl |= ADDI_TCW_CTRL_ENA;
|
||||
break;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue