Skip to content

Commit

Permalink
serial: imx: Fix coding style issue
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Sachin Kamat authored and Greg Kroah-Hartman committed Jan 16, 2013
1 parent e32a9f8 commit 699cbd6
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions drivers/tty/serial/imx.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 699cbd6

Please sign in to comment.