All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] comedi: cb_pcidda: Fix coding style - use BIT macro
@ 2015-11-11 16:27 Ranjith Thangavel
  2015-11-12 18:02 ` Ian Abbott
  2015-11-12 18:09 ` Fabio Estevam
  0 siblings, 2 replies; 3+ messages in thread
From: Ranjith Thangavel @ 2015-11-11 16:27 UTC (permalink / raw)
  To: gregkh; +Cc: abbotti, hsweeten, devel, linux-kernel, ranjithece24

BIT macro is used for defining BIT location instead of
shifting operator - coding style issue

Signed-off-by: Ranjith Thangavel <ranjithece24@gmail.com>
---
 drivers/staging/comedi/drivers/cb_pcidda.c |    6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/drivers/staging/comedi/drivers/cb_pcidda.c b/drivers/staging/comedi/drivers/cb_pcidda.c
index b00a36a..ccb37d1 100644
--- a/drivers/staging/comedi/drivers/cb_pcidda.c
+++ b/drivers/staging/comedi/drivers/cb_pcidda.c
@@ -51,13 +51,13 @@
 
 /* DAC registers */
 #define CB_DDA_DA_CTRL_REG		0x00	   /* D/A Control Register  */
-#define CB_DDA_DA_CTRL_SU		(1 << 0)   /*  Simultaneous update  */
-#define CB_DDA_DA_CTRL_EN		(1 << 1)   /*  Enable specified DAC */
+#define CB_DDA_DA_CTRL_SU		BIT(0)   /*  Simultaneous update  */
+#define CB_DDA_DA_CTRL_EN		BIT(1)   /*  Enable specified DAC */
 #define CB_DDA_DA_CTRL_DAC(x)		((x) << 2) /*  Specify DAC channel  */
 #define CB_DDA_DA_CTRL_RANGE2V5		(0 << 6)   /*  2.5V range           */
 #define CB_DDA_DA_CTRL_RANGE5V		(2 << 6)   /*  5V range             */
 #define CB_DDA_DA_CTRL_RANGE10V		(3 << 6)   /*  10V range            */
-#define CB_DDA_DA_CTRL_UNIP		(1 << 8)   /*  Unipolar range       */
+#define CB_DDA_DA_CTRL_UNIP		BIT(8)   /*  Unipolar range       */
 
 #define DACALIBRATION1	4	/*  D/A CALIBRATION REGISTER 1 */
 /* write bits */
-- 
1.7.10.4


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] comedi: cb_pcidda: Fix coding style - use BIT macro
  2015-11-11 16:27 [PATCH] comedi: cb_pcidda: Fix coding style - use BIT macro Ranjith Thangavel
@ 2015-11-12 18:02 ` Ian Abbott
  2015-11-12 18:09 ` Fabio Estevam
  1 sibling, 0 replies; 3+ messages in thread
From: Ian Abbott @ 2015-11-12 18:02 UTC (permalink / raw)
  To: Ranjith Thangavel, gregkh; +Cc: hsweeten, devel, linux-kernel

On 11/11/15 16:27, Ranjith Thangavel wrote:
> BIT macro is used for defining BIT location instead of
> shifting operator - coding style issue
>
> Signed-off-by: Ranjith Thangavel <ranjithece24@gmail.com>
> ---
>   drivers/staging/comedi/drivers/cb_pcidda.c |    6 +++---
>   1 file changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/drivers/staging/comedi/drivers/cb_pcidda.c b/drivers/staging/comedi/drivers/cb_pcidda.c
> index b00a36a..ccb37d1 100644
> --- a/drivers/staging/comedi/drivers/cb_pcidda.c
> +++ b/drivers/staging/comedi/drivers/cb_pcidda.c
> @@ -51,13 +51,13 @@
>
>   /* DAC registers */
>   #define CB_DDA_DA_CTRL_REG		0x00	   /* D/A Control Register  */
> -#define CB_DDA_DA_CTRL_SU		(1 << 0)   /*  Simultaneous update  */
> -#define CB_DDA_DA_CTRL_EN		(1 << 1)   /*  Enable specified DAC */
> +#define CB_DDA_DA_CTRL_SU		BIT(0)   /*  Simultaneous update  */
> +#define CB_DDA_DA_CTRL_EN		BIT(1)   /*  Enable specified DAC */
>   #define CB_DDA_DA_CTRL_DAC(x)		((x) << 2) /*  Specify DAC channel  */
>   #define CB_DDA_DA_CTRL_RANGE2V5		(0 << 6)   /*  2.5V range           */
>   #define CB_DDA_DA_CTRL_RANGE5V		(2 << 6)   /*  5V range             */
>   #define CB_DDA_DA_CTRL_RANGE10V		(3 << 6)   /*  10V range            */
> -#define CB_DDA_DA_CTRL_UNIP		(1 << 8)   /*  Unipolar range       */
> +#define CB_DDA_DA_CTRL_UNIP		BIT(8)   /*  Unipolar range       */
>
>   #define DACALIBRATION1	4	/*  D/A CALIBRATION REGISTER 1 */
>   /* write bits */
>

Thanks!

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

-- 
-=( Ian Abbott @ MEV Ltd.    E-mail: <abbotti@mev.co.uk> )=-
-=(                          Web: http://www.mev.co.uk/  )=-

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] comedi: cb_pcidda: Fix coding style - use BIT macro
  2015-11-11 16:27 [PATCH] comedi: cb_pcidda: Fix coding style - use BIT macro Ranjith Thangavel
  2015-11-12 18:02 ` Ian Abbott
@ 2015-11-12 18:09 ` Fabio Estevam
  1 sibling, 0 replies; 3+ messages in thread
From: Fabio Estevam @ 2015-11-12 18:09 UTC (permalink / raw)
  To: Ranjith Thangavel; +Cc: Greg Kroah-Hartman, devel, abbotti, linux-kernel

On Wed, Nov 11, 2015 at 2:27 PM, Ranjith Thangavel
<ranjithece24@gmail.com> wrote:
> BIT macro is used for defining BIT location instead of
> shifting operator - coding style issue

I would not call it a coding style issue.

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2015-11-12 18:09 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-11-11 16:27 [PATCH] comedi: cb_pcidda: Fix coding style - use BIT macro Ranjith Thangavel
2015-11-12 18:02 ` Ian Abbott
2015-11-12 18:09 ` Fabio Estevam

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.