Commit 2c8e2dcb authored by Chaehyun Lim's avatar Chaehyun Lim Committed by Greg Kroah-Hartman

staging: wilc1000: fix logical continuations

This patch fixes logical continuations found by checkpatch
CHECK: Logical continuations should be on the previous line
Signed-off-by: default avatarChaehyun Lim <chaehyun.lim@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 7adf4f31
...@@ -115,8 +115,7 @@ int wilc_mq_recv(struct message_queue *mq, ...@@ -115,8 +115,7 @@ int wilc_mq_recv(struct message_queue *mq,
struct message *msg; struct message *msg;
unsigned long flags; unsigned long flags;
if ((!mq) || (recv_buf_size == 0) if ((!mq) || (recv_buf_size == 0) || (!recv_buf) || (!recv_len)) {
|| (!recv_buf) || (!recv_len)) {
PRINT_ER("mq or recv_buf is null\n"); PRINT_ER("mq or recv_buf is null\n");
return -EINVAL; return -EINVAL;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment