diff options
author | Sachin Kamat <sachin.kamat@linaro.org> | 2013-01-07 10:25:04 +0530 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-01-15 22:02:51 -0800 |
commit | 699cbd6726ed9124ce014471aaaa28e8c7f7122e (patch) | |
tree | 3a5a3a55de764d2a58a7203e732f0340414747e1 /drivers | |
parent | e32a9f8f34cc5eaf77100cd2d54e78e81d01f5dc (diff) | |
download | linux-699cbd6726ed9124ce014471aaaa28e8c7f7122e.tar.gz linux-699cbd6726ed9124ce014471aaaa28e8c7f7122e.tar.bz2 linux-699cbd6726ed9124ce014471aaaa28e8c7f7122e.zip |
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: Sascha Hauer <s.hauer@pengutronix.de>
Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/tty/serial/imx.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/tty/serial/imx.c b/drivers/tty/serial/imx.c index 426253c2821d..9bec8a23687a 100644 --- a/drivers/tty/serial/imx.c +++ b/drivers/tty/serial/imx.c @@ -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; |