Commit b5b2e006 authored by Franziska Naepelt's avatar Franziska Naepelt Committed by Tony Lindgren
Browse files

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: default avatarFranziska 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: default avatarTony Lindgren <tony@atomide.com>
parent ac9a7868
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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 */
+1 −1

File changed.

Contains only whitespace changes.