Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1267286 > unrolled thread

[PATCH] comedi: ni_6527: Fix coding style - use BIT macro

Started byRanjith Thangavel <ranjithece24@gmail.com>
First post2015-11-11 17:20 +0100
Last post2015-11-12 19:00 +0100
Articles 2 — 2 participants

Back to article view | Back to linux.kernel


Contents

  [PATCH] comedi: ni_6527: Fix coding style - use BIT macro Ranjith Thangavel <ranjithece24@gmail.com> - 2015-11-11 17:20 +0100
    Re: [PATCH] comedi: ni_6527: Fix coding style - use BIT macro Ian Abbott <abbotti@mev.co.uk> - 2015-11-12 19:00 +0100

#1267286 — [PATCH] comedi: ni_6527: Fix coding style - use BIT macro

FromRanjith Thangavel <ranjithece24@gmail.com>
Date2015-11-11 17:20 +0100
Subject[PATCH] comedi: ni_6527: Fix coding style - use BIT macro
Message-ID<qtGhQ-55w-13@gated-at.bofh.it>
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/ni_6527.c |   24 ++++++++++++------------
 1 file changed, 12 insertions(+), 12 deletions(-)

diff --git a/drivers/staging/comedi/drivers/ni_6527.c b/drivers/staging/comedi/drivers/ni_6527.c
index 62a817e..b340b98 100644
--- a/drivers/staging/comedi/drivers/ni_6527.c
+++ b/drivers/staging/comedi/drivers/ni_6527.c
@@ -42,24 +42,24 @@
 #define NI6527_DO_REG(x)		(0x03 + (x))
 #define NI6527_ID_REG			0x06
 #define NI6527_CLR_REG			0x07
-#define NI6527_CLR_EDGE			(1 << 3)
-#define NI6527_CLR_OVERFLOW		(1 << 2)
-#define NI6527_CLR_FILT			(1 << 1)
-#define NI6527_CLR_INTERVAL		(1 << 0)
+#define NI6527_CLR_EDGE			BIT(3)
+#define NI6527_CLR_OVERFLOW		BIT(2)
+#define NI6527_CLR_FILT			BIT(1)
+#define NI6527_CLR_INTERVAL		BIT(0)
 #define NI6527_CLR_IRQS			(NI6527_CLR_EDGE | NI6527_CLR_OVERFLOW)
 #define NI6527_CLR_RESET_FILT		(NI6527_CLR_FILT | NI6527_CLR_INTERVAL)
 #define NI6527_FILT_INTERVAL_REG(x)	(0x08 + (x))
 #define NI6527_FILT_ENA_REG(x)		(0x0c + (x))
 #define NI6527_STATUS_REG		0x14
-#define NI6527_STATUS_IRQ		(1 << 2)
-#define NI6527_STATUS_OVERFLOW		(1 << 1)
-#define NI6527_STATUS_EDGE		(1 << 0)
+#define NI6527_STATUS_IRQ		BIT(2)
+#define NI6527_STATUS_OVERFLOW	BIT(1)
+#define NI6527_STATUS_EDGE		BIT(0)
 #define NI6527_CTRL_REG			0x15
-#define NI6527_CTRL_FALLING		(1 << 4)
-#define NI6527_CTRL_RISING		(1 << 3)
-#define NI6527_CTRL_IRQ			(1 << 2)
-#define NI6527_CTRL_OVERFLOW		(1 << 1)
-#define NI6527_CTRL_EDGE		(1 << 0)
+#define NI6527_CTRL_FALLING		BIT(4)
+#define NI6527_CTRL_RISING		BIT(3)
+#define NI6527_CTRL_IRQ			BIT(2)
+#define NI6527_CTRL_OVERFLOW	BIT(1)
+#define NI6527_CTRL_EDGE		BIT(0)
 #define NI6527_CTRL_DISABLE_IRQS	0
 #define NI6527_CTRL_ENABLE_IRQS		(NI6527_CTRL_FALLING | \
 					 NI6527_CTRL_RISING | \
-- 
1.7.10.4

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

[toc] | [next] | [standalone]


#1268144

FromIan Abbott <abbotti@mev.co.uk>
Date2015-11-12 19:00 +0100
Message-ID<qu4ka-3yL-13@gated-at.bofh.it>
In reply to#1267286
On 11/11/15 16:14, 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/ni_6527.c |   24 ++++++++++++------------
>   1 file changed, 12 insertions(+), 12 deletions(-)
>
> diff --git a/drivers/staging/comedi/drivers/ni_6527.c b/drivers/staging/comedi/drivers/ni_6527.c
> index 62a817e..b340b98 100644
> --- a/drivers/staging/comedi/drivers/ni_6527.c
> +++ b/drivers/staging/comedi/drivers/ni_6527.c
> @@ -42,24 +42,24 @@
>   #define NI6527_DO_REG(x)		(0x03 + (x))
>   #define NI6527_ID_REG			0x06
>   #define NI6527_CLR_REG			0x07
> -#define NI6527_CLR_EDGE			(1 << 3)
> -#define NI6527_CLR_OVERFLOW		(1 << 2)
> -#define NI6527_CLR_FILT			(1 << 1)
> -#define NI6527_CLR_INTERVAL		(1 << 0)
> +#define NI6527_CLR_EDGE			BIT(3)
> +#define NI6527_CLR_OVERFLOW		BIT(2)
> +#define NI6527_CLR_FILT			BIT(1)
> +#define NI6527_CLR_INTERVAL		BIT(0)
>   #define NI6527_CLR_IRQS			(NI6527_CLR_EDGE | NI6527_CLR_OVERFLOW)
>   #define NI6527_CLR_RESET_FILT		(NI6527_CLR_FILT | NI6527_CLR_INTERVAL)
>   #define NI6527_FILT_INTERVAL_REG(x)	(0x08 + (x))
>   #define NI6527_FILT_ENA_REG(x)		(0x0c + (x))
>   #define NI6527_STATUS_REG		0x14
> -#define NI6527_STATUS_IRQ		(1 << 2)
> -#define NI6527_STATUS_OVERFLOW		(1 << 1)
> -#define NI6527_STATUS_EDGE		(1 << 0)
> +#define NI6527_STATUS_IRQ		BIT(2)
> +#define NI6527_STATUS_OVERFLOW	BIT(1)
> +#define NI6527_STATUS_EDGE		BIT(0)
>   #define NI6527_CTRL_REG			0x15
> -#define NI6527_CTRL_FALLING		(1 << 4)
> -#define NI6527_CTRL_RISING		(1 << 3)
> -#define NI6527_CTRL_IRQ			(1 << 2)
> -#define NI6527_CTRL_OVERFLOW		(1 << 1)
> -#define NI6527_CTRL_EDGE		(1 << 0)
> +#define NI6527_CTRL_FALLING		BIT(4)
> +#define NI6527_CTRL_RISING		BIT(3)
> +#define NI6527_CTRL_IRQ			BIT(2)
> +#define NI6527_CTRL_OVERFLOW	BIT(1)
> +#define NI6527_CTRL_EDGE		BIT(0)
>   #define NI6527_CTRL_DISABLE_IRQS	0
>   #define NI6527_CTRL_ENABLE_IRQS		(NI6527_CTRL_FALLING | \
>   					 NI6527_CTRL_RISING | \
>

Again, the column with the macro values is a bit misaligned.  Could you 
fix it please?

-- 
-=( Ian Abbott @ MEV Ltd.    E-mail: <abbotti@mev.co.uk> )=-
-=(                          Web: http://www.mev.co.uk/  )=-
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

[toc] | [prev] | [standalone]


Back to top | Article view | linux.kernel


csiph-web