Commit 65c7815a authored by H Hartley Sweeten's avatar H Hartley Sweeten Committed by Greg Kroah-Hartman

staging: comedi: rtd520: cleanup TS_* defines

Convert these to bit shifts and cleanup the whitespace and comments.
Signed-off-by: default avatarH Hartley Sweeten <hsweeten@visionengravers.com>
Cc: Ian Abbott <abbotti@mev.co.uk>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 6478c228
......@@ -147,19 +147,11 @@
#define FS_DIN_NOT_FULL (1 << 14) /* DIN FIFO not full */
/* Timer Status Word Bits (GetTimerStatus) */
#define TS_PCLK_GATE 0x0001
/* D0 - Pacer Clock Gate [0 - gated, 1 - enabled] */
#define TS_BCLK_GATE 0x0002
/* D1 - Burst Clock Gate [0 - disabled, 1 - running] */
#define TS_DCNT_GATE 0x0004
/* D2 - Pacer Clock Delayed Start Trigger [0 - delay over, 1 - delay in */
/* progress] */
#define TS_ACNT_GATE 0x0008
/* D3 - Pacer Clock About Trigger [0 - completed, 1 - in progress] */
#define TS_PCLK_RUN 0x0010
/* D4 - Pacer Clock Shutdown Flag [0 - Pacer Clock cannot be start */
/* triggered only by Software Pacer Start Command, 1 - Pacer Clock can */
/* be start triggered] */
#define TS_PCLK_GATE (1 << 0) /* Pacer Clock Gate enabled */
#define TS_BCLK_GATE (1 << 1) /* Burst Clock Gate running */
#define TS_DCNT_GATE (1 << 2) /* Pacer Clock Delayed Start Trig. */
#define TS_ACNT_GATE (1 << 3) /* Pacer Clock About Trig. */
#define TS_PCLK_RUN (1 << 4) /* Pacer Clock Shutdown Flag */
/* External Trigger polarity select */
/* External Interrupt polarity select */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment