ARM: omap: Fix checkpatch issues
authorFranziska Naepelt <franziska.naepelt@googlemail.com>
Tue, 30 May 2023 18:24:03 +0000 (20:24 +0200)
committerTony Lindgren <tony@atomide.com>
Wed, 31 May 2023 05:30:43 +0000 (08:30 +0300)
This removes the following checkpatch issues:
- ERROR: space required after that ',' (ctx:VxV)
- WARNING: Comparisons should place the constant on the right side of the test

Signed-off-by: Franziska Naepelt <franziska.naepelt@gmail.com>
Message-Id: <20230530182403.35646-1-franziska.naepelt@gmail.com>
[tony@atomide.com: add space also around '-' in addition to ',']
Signed-off-by: Tony Lindgren <tony@atomide.com>
arch/arm/mach-omap1/sram-init.c
arch/arm/mach-omap2/sram.c

index 26427d6be896f24a3aca18898d1fe5c644cd0966..736a72a2b184cb9382367e3f94e4515a4c93771a 100644 (file)
@@ -23,7 +23,7 @@
 
 #define OMAP1_SRAM_PA          0x20000000
 #define SRAM_BOOTLOADER_SZ     0x80
-#define ROUND_DOWN(value,boundary)     ((value) & (~((boundary)-1)))
+#define ROUND_DOWN(value, boundary)    ((value) & (~((boundary) - 1)))
 
 static void __iomem *omap_sram_base;
 static unsigned long omap_sram_start;
index 815d390109d21bef4a9af992138c63ff64a1daba..898b011ae8d9037419a09de4db166bc16d6785ab 100644 (file)
@@ -45,7 +45,7 @@
 
 #define GP_DEVICE              0x300
 
-#define ROUND_DOWN(value,boundary)     ((value) & (~((boundary)-1)))
+#define ROUND_DOWN(value, boundary)    ((value) & (~((boundary) - 1)))
 
 static unsigned long omap_sram_start;
 static unsigned long omap_sram_size;
@@ -118,7 +118,7 @@ static void omap_sram_reset(void)
  */
 static int is_sram_locked(void)
 {
-       if (OMAP2_DEVICE_TYPE_GP == omap_type()) {
+       if (omap_type() == OMAP2_DEVICE_TYPE_GP) {
                /* RAMFW: R/W access to all initiators for all qualifier sets */
                if (cpu_is_omap242x()) {
                        writel_relaxed(0xFF, OMAP24XX_VA_REQINFOPERM0); /* all q-vects */