]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
serial: imx: Fix coding style issue
authorSachin Kamat <sachin.kamat@linaro.org>
Mon, 7 Jan 2013 04:55:04 +0000 (10:25 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 16 Jan 2013 06:02:51 +0000 (22:02 -0800)
Silences the following checkpatch error:
ERROR: that open brace { should be on the previous line

Cc: Shawn Guo <shawn.guo@linaro.org>
Acked-by: Sascha Hauer <s.hauer@pengutronix.de>
Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/tty/serial/imx.c

index 426253c2821dcd6872ead9d9ebdd3df8e44aa4c3..9bec8a23687aee8f3b2cc980bd13a1e6fe1ff398 100644 (file)
@@ -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;