]> git.ipfire.org Git - people/ms/u-boot.git/commitdiff
ARM: rmobile: salvator-x: Use BIT() macro in board file
authorMarek Vasut <marek.vasut@gmail.com>
Sat, 13 May 2017 13:57:41 +0000 (15:57 +0200)
committerNobuhiro Iwamatsu <iwamatsu@nigauri.org>
Sun, 21 May 2017 19:38:26 +0000 (04:38 +0900)
Cosmetic change, replace (1 << (n)) with BIT(n) .

Signed-off-by: Marek Vasut <marek.vasut+renesas@gmail.com>
Cc: Hiroyuki Yokoyama <hiroyuki.yokoyama.vx@renesas.com>
Cc: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
board/renesas/salvator-x/salvator-x.c

index 0164306b5209cbb5c326f900841d76445d566bdf..d0e21ab6677e358d09a7ca709ce731e2afb04f21 100644 (file)
@@ -44,10 +44,10 @@ void s_init(void)
        writel(0xFFFFFFFF, CPGWPR);
 }
 
-#define GSX_MSTP112    (1 << 12)       /* 3DG */
-#define TMU0_MSTP125   (1 << 25)       /* secure */
-#define TMU1_MSTP124   (1 << 24)       /* non-secure */
-#define SCIF2_MSTP310  (1 << 10)       /* SCIF2 */
+#define GSX_MSTP112            BIT(12) /* 3DG */
+#define TMU0_MSTP125           BIT(25) /* secure */
+#define TMU1_MSTP124           BIT(24) /* non-secure */
+#define SCIF2_MSTP310          BIT(10) /* SCIF2 */
 
 int board_early_init_f(void)
 {