On 11/04/16 19:32, H Hartley Sweeten wrote:
Tidy up the defines to fix the checkpatch.pl issues:
CHECK: Prefer using the BIT macro

Signed-off-by: H Hartley Sweeten <hswee...@visionengravers.com>
Cc: Ian Abbott <abbo...@mev.co.uk>
Cc: Greg Kroah-Hartman <gre...@linuxfoundation.org>
---
  drivers/staging/comedi/drivers/comedi_8254.h | 14 ++++++++------
  1 file changed, 8 insertions(+), 6 deletions(-)

diff --git a/drivers/staging/comedi/drivers/comedi_8254.h 
b/drivers/staging/comedi/drivers/comedi_8254.h
index f4610ea..a12c294 100644
--- a/drivers/staging/comedi/drivers/comedi_8254.h
+++ b/drivers/staging/comedi/drivers/comedi_8254.h
@@ -53,13 +53,15 @@ struct comedi_subdevice;
  #define I8254_COUNTER2_REG            0x02
  #define I8254_CTRL_REG                        0x03
  #define I8254_CTRL_SEL_CTR(x)         ((x) << 6)
-#define I8254_CTRL_READBACK_COUNT      ((3 << 6) | (1 << 4))
-#define I8254_CTRL_READBACK_STATUS     ((3 << 6) | (1 << 5))
+#define I8254_CTRL_READBACK(x)         (I8254_CTRL_SEL_CTR(3) | BIT(x))
+#define I8254_CTRL_READBACK_COUNT      I8254_CTRL_READBACK(4)
+#define I8254_CTRL_READBACK_STATUS     I8254_CTRL_READBACK(5)
  #define I8254_CTRL_READBACK_SEL_CTR(x)        (2 << (x))
-#define I8254_CTRL_LATCH               (0 << 4)
-#define I8254_CTRL_LSB_ONLY            (1 << 4)
-#define I8254_CTRL_MSB_ONLY            (2 << 4)
-#define I8254_CTRL_LSB_MSB             (3 << 4)
+#define I8254_CTRL_RW(x)               (((x) & 0x3) << 4)
+#define I8254_CTRL_LATCH               I8254_CTRL_RW(0)
+#define I8254_CTRL_LSB_ONLY            I8254_CTRL_RW(1)
+#define I8254_CTRL_MSB_ONLY            I8254_CTRL_RW(2)
+#define I8254_CTRL_LSB_MSB             I8254_CTRL_RW(3)

  /* counter maps zero to 0x10000 */
  #define I8254_MAX_COUNT                       0x10000


Thanks!

It's also possible to latch (for readback) count and status at the same time (which requires 3 bytes to be read from the counter channel's data port to unlatch them both), although none of the drivers do that, I think, and they could just use I8254_CTRL_READBACK_COUNT | I8254_CTRL_READBACK_STATUS as the control word value if they wished to do so.

Reviewed-by: Ian Abbott <abbo...@mev.co.uk>

--
-=( Ian Abbott @ MEV Ltd.    E-mail: <abbo...@mev.co.uk> )=-
-=(                          Web: http://www.mev.co.uk/  )=-
_______________________________________________
devel mailing list
de...@linuxdriverproject.org
http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel

Reply via email to