mirror of https://gitee.com/openkylin/linux.git
staging: comedi: addi_apci_3120: remove devpriv->mode '0xef' magic value
This mask value is the same as APCI3120_DISABLE_TIMER_COUNTER. Use that instead and remove the "magic" value. 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
363aa5f2f4
commit
81ff03ba19
|
@ -1095,7 +1095,8 @@ static int apci3120_config_insn_timer(struct comedi_device *dev,
|
|||
apci3120_timer_enable(dev, 2, false);
|
||||
|
||||
/* Disable TIMER Interrupt */
|
||||
devpriv->mode &= APCI3120_DISABLE_TIMER_INT & 0xef;
|
||||
devpriv->mode &= APCI3120_DISABLE_TIMER_INT &
|
||||
APCI3120_DISABLE_TIMER_COUNTER;
|
||||
|
||||
/* Disable Eoc and Eos Interrupts */
|
||||
devpriv->mode &= APCI3120_DISABLE_EOC_INT & APCI3120_DISABLE_EOS_INT;
|
||||
|
|
Loading…
Reference in New Issue