staging: wilc1000: fix logical continuations
authorChaehyun Lim <chaehyun.lim@gmail.com>
Thu, 21 Jan 2016 11:30:56 +0000 (20:30 +0900)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 3 Feb 2016 23:21:18 +0000 (15:21 -0800)
This patch fixes logical continuations found by checkpatch
CHECK: Logical continuations should be on the previous line

Signed-off-by: Chaehyun Lim <chaehyun.lim@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/wilc1000/wilc_msgqueue.c

index c7a60f4..4493ca9 100644 (file)
@@ -115,8 +115,7 @@ int wilc_mq_recv(struct message_queue *mq,
        struct message *msg;
        unsigned long flags;
 
-       if ((!mq) || (recv_buf_size == 0)
-           || (!recv_buf) || (!recv_len)) {
+       if ((!mq) || (recv_buf_size == 0) || (!recv_buf) || (!recv_len)) {
                PRINT_ER("mq or recv_buf is null\n");
                return -EINVAL;
        }