[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <1447079162-12531-1-git-send-email-nizamhaider786@gmail.com>
Date: Mon, 9 Nov 2015 19:56:02 +0530
From: Nizam Haider <nizamhaider786@...il.com>
To: gregkh@...uxfoundation.org
Cc: jic23@...nel.org, knaack.h@....de, lars@...afoo.de,
pmeerw@...erw.net, marex@...x.de, stefan.wahren@...e.com,
kristina.martsenko@...il.com, ciorneiioana@...il.com,
hamohammed.sa@...il.com, alexandre.belloni@...e-electrons.com,
linux-iio@...r.kernel.org, devel@...verdev.osuosl.org,
linux-kernel@...r.kernel.org,
Nizam Haider <nizamhaider786@...il.com>,
Nizam Haider <nijamh@...c.in>
Subject: [PATCH] iio: adc: mxs-lradc: Prefer using the BIT macro
Replaces bit shifting on 1 with the BIT(x) macro
Signed-off-by: Nizam Haider <nijamh@...c.in>
---
drivers/staging/iio/adc/mxs-lradc.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/staging/iio/adc/mxs-lradc.c b/drivers/staging/iio/adc/mxs-lradc.c
index d997d9c..5f1375c 100644
--- a/drivers/staging/iio/adc/mxs-lradc.c
+++ b/drivers/staging/iio/adc/mxs-lradc.c
@@ -324,7 +324,7 @@ struct mxs_lradc {
#define LRADC_DELAY_TRIGGER(x) \
(((x) << LRADC_DELAY_TRIGGER_LRADCS_OFFSET) & \
LRADC_DELAY_TRIGGER_LRADCS_MASK)
-#define LRADC_DELAY_KICK (1 << 20)
+#define LRADC_DELAY_KICK BIT(20)
#define LRADC_DELAY_TRIGGER_DELAYS_MASK (0xf << 16)
#define LRADC_DELAY_TRIGGER_DELAYS_OFFSET 16
#define LRADC_DELAY_TRIGGER_DELAYS(x) \
--
1.8.1.4
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists