mirror of https://gitee.com/openkylin/linux.git
staging: comedi: hwdrv_apci1564: remove magic numbers in apci1564_counter_insn_read()
Use the bit defines from addi_tcw.h to remove the magic numbers in this function. Add the missing define for ADDI_TCW_STATUS_HARDWARE_TRIG. 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
c6288a3beb
commit
5babc1bc4d
|
@ -178,10 +178,10 @@ static int apci1564_counter_insn_read(struct comedi_device *dev,
|
|||
data[0] = inl(iobase + ADDI_TCW_VAL_REG);
|
||||
|
||||
status = inl(iobase + ADDI_TCW_STATUS_REG);
|
||||
data[1] = (status >> 1) & 1; /* software trigger status */
|
||||
data[2] = (status >> 2) & 1; /* hardware trigger status */
|
||||
data[3] = (status >> 3) & 1; /* software clear status */
|
||||
data[4] = (status >> 0) & 1; /* overflow status */
|
||||
data[1] = (status & ADDI_TCW_STATUS_SOFT_TRIG) ? 1 : 0;
|
||||
data[2] = (status & ADDI_TCW_STATUS_HARDWARE_TRIG) ? 1 : 0;
|
||||
data[3] = (status & ADDI_TCW_STATUS_SOFT_CLR) ? 1 : 0;
|
||||
data[4] = (status & ADDI_TCW_STATUS_OVERFLOW) ? 1 : 0;
|
||||
|
||||
return insn->n;
|
||||
}
|
||||
|
|
|
@ -49,6 +49,7 @@
|
|||
|
||||
#define ADDI_TCW_STATUS_REG 0x10
|
||||
#define ADDI_TCW_STATUS_SOFT_CLR BIT(3)
|
||||
#define ADDI_TCW_STATUS_HARDWARE_TRIG BIT(2)
|
||||
#define ADDI_TCW_STATUS_SOFT_TRIG BIT(1)
|
||||
#define ADDI_TCW_STATUS_OVERFLOW BIT(0)
|
||||
|
||||
|
|
Loading…
Reference in New Issue