On 16/06/15 15:15, Gujulan Elango, Hari Prasath (H.) wrote:
From: Hari Prasath Gujulan Elango <hguju...@visteon.com>

This patch silences the Checkpatch.pl warning 'Prefer using the
BIT macro'

Signed-off-by: Hari Prasath Gujulan Elango <hguju...@visteon.com>
---
  drivers/staging/comedi/comedidev.h | 12 ++++++------
  1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/drivers/staging/comedi/comedidev.h 
b/drivers/staging/comedi/comedidev.h
index 28f2606..28a5d3a 100644
--- a/drivers/staging/comedi/comedidev.h
+++ b/drivers/staging/comedi/comedidev.h
@@ -227,12 +227,12 @@ struct comedi_async {
   * @COMEDI_CB_ERROR_MASK:     events that indicate an error has occurred
   * @COMEDI_CB_CANCEL_MASK:    events that will cancel an async command
   */
-#define COMEDI_CB_EOS          (1 << 0)
-#define COMEDI_CB_EOA          (1 << 1)
-#define COMEDI_CB_BLOCK                (1 << 2)
-#define COMEDI_CB_EOBUF                (1 << 3)
-#define COMEDI_CB_ERROR                (1 << 4)
-#define COMEDI_CB_OVERFLOW     (1 << 5)
+#define COMEDI_CB_EOS          BIT(0)
+#define COMEDI_CB_EOA          BIT(1)
+#define COMEDI_CB_BLOCK                BIT(2)
+#define COMEDI_CB_EOBUF                BIT(3)
+#define COMEDI_CB_ERROR                BIT(4)
+#define COMEDI_CB_OVERFLOW     BIT(5)

  #define COMEDI_CB_ERROR_MASK  (COMEDI_CB_ERROR | COMEDI_CB_OVERFLOW)
  #define COMEDI_CB_CANCEL_MASK (COMEDI_CB_EOA | COMEDI_CB_ERROR_MASK)


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