]> git.ipfire.org Git - thirdparty/u-boot.git/commitdiff
arm64: renesas: Use BIT() macro in R-Car Gen3 header
authorMarek Vasut <marek.vasut+renesas@mailbox.org>
Mon, 27 Oct 2025 17:08:12 +0000 (18:08 +0100)
committerMarek Vasut <marek.vasut+renesas@mailbox.org>
Thu, 6 Nov 2025 19:09:59 +0000 (20:09 +0100)
Use the BIT() macro consistently in R-Car Gen3 header.
Fix indent with spaces to tabs at the same time. No
functional change.

Signed-off-by: Marek Vasut <marek.vasut+renesas@mailbox.org>
arch/arm/mach-renesas/include/mach/rcar-gen3-base.h

index f7c2c7b964b7fe34f03bf0dae1cfad10eb459ce3..741fb8b7041f7b32d9ad0f2ac9d99dbdd9bccb03 100644 (file)
 #define GICC_BASE              0xF1020000
 
 /* PFC */
-#define PFC_PUEN5      0xE6060414
-#define PUEN_SSI_SDATA4        BIT(17)
-#define PFC_PUEN6       0xE6060418
-#define PUEN_USB1_OVC   (1 << 2)
-#define PUEN_USB1_PWEN  (1 << 1)
+#define PFC_PUEN5              0xE6060414
+#define PUEN_SSI_SDATA4                BIT(17)
+#define PFC_PUEN6              0xE6060418
+#define PUEN_USB1_OVC          BIT(2)
+#define PUEN_USB1_PWEN         BIT(1)
 
 #ifndef __ASSEMBLY__
 #include <asm/types.h>