From: Sachin Kamat Date: Mon, 7 Jan 2013 04:55:04 +0000 (+0530) Subject: serial: imx: Fix coding style issue X-Git-Tag: upstream/snapshot3+hdmi~5694^2~124 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=699cbd6726ed9124ce014471aaaa28e8c7f7122e;p=platform%2Fadaptation%2Frenesas_rcar%2Frenesas_kernel.git serial: imx: Fix coding style issue Silences the following checkpatch error: ERROR: that open brace { should be on the previous line Cc: Shawn Guo Acked-by: Sascha Hauer Signed-off-by: Sachin Kamat Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/tty/serial/imx.c b/drivers/tty/serial/imx.c index 426253c..9bec8a2 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;