summaryrefslogtreecommitdiff
path: root/arch/arm/mach-omap1/sram-init.c
diff options
context:
space:
mode:
authorFranziska Naepelt <franziska.naepelt@googlemail.com>2023-05-30 20:24:03 +0200
committerTony Lindgren <tony@atomide.com>2023-05-31 08:30:43 +0300
commitb5b2e006c98f97f2c83aeeb6e7e8fb32198cc43a (patch)
treeee0a25343e7043d47cdbf0e42d5038b51282fa95 /arch/arm/mach-omap1/sram-init.c
parentac9a78681b921877518763ba0e89202254349d1b (diff)
ARM: omap: Fix checkpatch issues
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>
Diffstat (limited to 'arch/arm/mach-omap1/sram-init.c')
-rw-r--r--arch/arm/mach-omap1/sram-init.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-omap1/sram-init.c b/arch/arm/mach-omap1/sram-init.c
index 26427d6be896..736a72a2b184 100644
--- a/arch/arm/mach-omap1/sram-init.c
+++ b/arch/arm/mach-omap1/sram-init.c
@@ -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;