All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Nayak, Rajendra" <rnayak@ti.com>
To: linux-omap <linux-omap@vger.kernel.org>
Subject: [PATCH 10/10] OMAP3: SR: Replace (0x1 << n) with BIT(n)
Date: Wed, 15 Apr 2009 18:25:49 +0530	[thread overview]
Message-ID: <5A47E75E594F054BAF48C5E4FC4B92AB02FB251816@dbde02.ent.ti.com> (raw)

From: Rajendra Nayak <rnayak@ti.com>

This patch converts all the bit defines from (0x1 << n)
to BIT(n) in smartreflex driver

Signed-off-by: Rajendra Nayak <rnayak@ti.com>
---
 arch/arm/mach-omap2/smartreflex.h |   42 +++++++++++++++++++-------------------
 1 files changed, 21 insertions(+), 21 deletions(-)

Index: linux-omap-2.6/arch/arm/mach-omap2/smartreflex.h
===================================================================
--- linux-omap-2.6.orig/arch/arm/mach-omap2/smartreflex.h	2009-04-15 11:46:15.000000000 +0530
+++ linux-omap-2.6/arch/arm/mach-omap2/smartreflex.h	2009-04-15 11:46:15.000000000 +0530
@@ -43,22 +43,22 @@
 #define GAIN_MAXLIMIT	16
 #define R_MAXLIMIT	256
 
-#define SR1_CLK_ENABLE	(0x1 << 6)
-#define SR2_CLK_ENABLE	(0x1 << 7)
+#define SR1_CLK_ENABLE	BIT(6)
+#define SR2_CLK_ENABLE	BIT(7)
 
 /* PRM_VP1_CONFIG */
 #define PRM_VP1_CONFIG_ERROROFFSET	(0x00 << 24)
 #define PRM_VP1_CONFIG_ERRORGAIN	(0x20 << 16)
 
 #define PRM_VP1_CONFIG_INITVOLTAGE	(0x30 << 8) /* 1.2 volt */
-#define PRM_VP1_CONFIG_TIMEOUTEN	(0x1 << 3)
-#define PRM_VP1_CONFIG_INITVDD		(0x1 << 2)
-#define PRM_VP1_CONFIG_FORCEUPDATE	(0x1 << 1)
-#define PRM_VP1_CONFIG_VPENABLE		(0x1 << 0)
+#define PRM_VP1_CONFIG_TIMEOUTEN	BIT(3)
+#define PRM_VP1_CONFIG_INITVDD		BIT(2)
+#define PRM_VP1_CONFIG_FORCEUPDATE	BIT(1)
+#define PRM_VP1_CONFIG_VPENABLE		BIT(0)
 
 /* PRM_VP1_VSTEPMIN */
 #define PRM_VP1_VSTEPMIN_SMPSWAITTIMEMIN	(0x01F4 << 8)
-#define PRM_VP1_VSTEPMIN_VSTEPMIN		(0x01 << 0)
+#define PRM_VP1_VSTEPMIN_VSTEPMIN		BIT(0)
 
 /* PRM_VP1_VSTEPMAX */
 #define PRM_VP1_VSTEPMAX_SMPSWAITTIMEMAX	(0x01F4 << 8)
@@ -74,14 +74,14 @@
 #define PRM_VP2_CONFIG_ERRORGAIN	(0x20 << 16)
 
 #define PRM_VP2_CONFIG_INITVOLTAGE	(0x30 << 8) /* 1.2 volt */
-#define PRM_VP2_CONFIG_TIMEOUTEN	(0x1 << 3)
-#define PRM_VP2_CONFIG_INITVDD		(0x1 << 2)
-#define PRM_VP2_CONFIG_FORCEUPDATE	(0x1 << 1)
-#define PRM_VP2_CONFIG_VPENABLE		(0x1 << 0)
+#define PRM_VP2_CONFIG_TIMEOUTEN	BIT(3)
+#define PRM_VP2_CONFIG_INITVDD		BIT(2)
+#define PRM_VP2_CONFIG_FORCEUPDATE	BIT(1)
+#define PRM_VP2_CONFIG_VPENABLE		BIT(0)
 
 /* PRM_VP2_VSTEPMIN */
 #define PRM_VP2_VSTEPMIN_SMPSWAITTIMEMIN	(0x01F4 << 8)
-#define PRM_VP2_VSTEPMIN_VSTEPMIN		(0x01 << 0)
+#define PRM_VP2_VSTEPMIN_VSTEPMIN		BIT(0)
 
 /* PRM_VP2_VSTEPMAX */
 #define PRM_VP2_VSTEPMAX_SMPSWAITTIMEMAX	(0x01F4 << 8)
@@ -106,20 +106,20 @@
 #define SRCONFIG_SENNENABLE_SHIFT	5
 #define SRCONFIG_SENPENABLE_SHIFT	3
 
-#define SRCONFIG_SRENABLE		(0x01 << 11)
-#define SRCONFIG_SENENABLE		(0x01 << 10)
-#define SRCONFIG_ERRGEN_EN		(0x01 << 9)
-#define SRCONFIG_MINMAXAVG_EN		(0x01 << 8)
+#define SRCONFIG_SRENABLE		BIT(11)
+#define SRCONFIG_SENENABLE		BIT(10)
+#define SRCONFIG_ERRGEN_EN		BIT(9)
+#define SRCONFIG_MINMAXAVG_EN		BIT(8)
 
-#define SRCONFIG_DELAYCTRL		(0x01 << 2)
+#define SRCONFIG_DELAYCTRL		BIT(2)
 #define SRCONFIG_CLKCTRL		(0x00 << 0)
 
 /* AVGWEIGHT */
 #define SR1_AVGWEIGHT_SENPAVGWEIGHT	(0x03 << 2)
 #define SR1_AVGWEIGHT_SENNAVGWEIGHT	(0x03 << 0)
 
-#define SR2_AVGWEIGHT_SENPAVGWEIGHT	(0x01 << 2)
-#define SR2_AVGWEIGHT_SENNAVGWEIGHT	(0x01 << 0)
+#define SR2_AVGWEIGHT_SENPAVGWEIGHT	BIT(2)
+#define SR2_AVGWEIGHT_SENNAVGWEIGHT	BIT(0)
 
 /* NVALUERECIPROCAL */
 #define NVALUERECIPROCAL_SENPGAIN_SHIFT	20
@@ -136,8 +136,8 @@
 #define SR_CLKACTIVITY_IOFF_FOFF	(0x00 << 20)
 #define SR_CLKACTIVITY_IOFF_FON		(0x02 << 20)
 
-#define ERRCONFIG_VPBOUNDINTEN		(0x1 << 31)
-#define ERRCONFIG_VPBOUNDINTST		(0x1 << 30)
+#define ERRCONFIG_VPBOUNDINTEN		BIT(31)
+#define ERRCONFIG_VPBOUNDINTST		BIT(30)
 
 #define SR1_ERRWEIGHT			(0x07 << 16)
 #define SR1_ERRMAXLIMIT			(0x02 << 8)

             reply	other threads:[~2009-04-15 12:55 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-04-15 12:55 Nayak, Rajendra [this message]
  -- strict thread matches above, loose matches on Subject: below --
2009-04-03 16:09 [PATCH 10/10] OMAP3: SR: Replace (0x1 << n) with BIT(n) Nayak, Rajendra

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=5A47E75E594F054BAF48C5E4FC4B92AB02FB251816@dbde02.ent.ti.com \
    --to=rnayak@ti.com \
    --cc=linux-omap@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.