]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
staging: xillybus: Fix if-else coding style errors
authorEli Billauer <eli.billauer@gmail.com>
Thu, 17 Jul 2014 14:53:19 +0000 (17:53 +0300)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 18 Jul 2014 00:18:44 +0000 (17:18 -0700)
According to Documentation/CodingStyle, when one branch of an if-else
statement has multiple statements, both branches should be enclosed in curly
brackets.

Signed-off-by: Eli Billauer <eli.billauer@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/xillybus/xillybus_core.c

index 2d59734744e574ac8a963c987acc5c6a94b8f5c9..0214009f7513a5ad98e450049bc76396e006efd8 100644 (file)
@@ -158,10 +158,10 @@ irqreturn_t xillybus_isr(int irq, void *data)
                                ep->msg_counter,
                                i/2);
 
-                       if (++ep->failed_messages > 10)
+                       if (++ep->failed_messages > 10) {
                                dev_err(ep->dev,
                                        "Lost sync with interrupt messages. Stopping.\n");
-                       else {
+                       else {
                                ep->ephw->hw_sync_sgl_for_device(
                                        ep,
                                        ep->msgbuf_dma_addr,
@@ -532,8 +532,9 @@ static int xilly_setupchannels(struct xilly_endpoint *ep,
 
                        if (!buffers)
                                goto memfail;
-               } else
+               } else {
                        bytebufsize = bufsize << 2;
+               }
 
                if (!is_writebuf) {
                        channel->num_rd_buffers = bufnum;