Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit cd80d548 authored by Dmitri Vorobiev's avatar Dmitri Vorobiev Committed by Ralf Baechle
Browse files

[MIPS] Malta: fix braces at single statement blocks



This patch fixes a couple of warnings reported by checkpatch.pl.

No functional changes introduced.

Signed-off-by: default avatarDmitri Vorobiev <dmitri.vorobiev@gmail.com>
Signed-off-by: default avatarRalf Baechle <ralf@linux-mips.org>
parent bbdda5e1
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -114,7 +114,8 @@ static void malta_hw0_irqdispatch(void)

	irq = get_int();
	if (irq < 0) {
		return;  /* interrupt has already been cleared */
		/* interrupt has already been cleared */
		return;
	}

	do_IRQ(MALTA_INT_BASE + irq);
+1 −2
Original line number Diff line number Diff line
@@ -202,9 +202,8 @@ void __init plat_mem_setup(void)
#endif
	}
#ifdef CONFIG_DMA_COHERENT
	else {
	else
		panic("Hardware DMA cache coherency not supported");
	}
#endif

#ifdef CONFIG_BLK_DEV_IDE