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

Commit 699cbd67 authored by Sachin Kamat's avatar Sachin Kamat Committed by Greg Kroah-Hartman
Browse files

serial: imx: Fix coding style issue



Silences the following checkpatch error:
ERROR: that open brace { should be on the previous line

Cc: Shawn Guo <shawn.guo@linaro.org>
Acked-by: default avatarSascha Hauer <s.hauer@pengutronix.de>
Signed-off-by: default avatarSachin Kamat <sachin.kamat@linaro.org>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent e32a9f8f
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -491,8 +491,7 @@ static irqreturn_t imx_txint(int irq, void *dev_id)
	unsigned long flags;

	spin_lock_irqsave(&sport->port.lock, flags);
	if (sport->port.x_char)
	{
	if (sport->port.x_char) {
		/* Send next char */
		writel(sport->port.x_char, sport->port.membase + URTX0);
		goto out;