From: Ira Weiny <ira.we...@intel.com>

Else statements should continue using braces even if there is only 1 line in
the block.  Found by checkpatch --strict

Signed-off-by: Ira Weiny <ira.we...@intel.com>
---
 drivers/staging/rdma/hfi1/diag.c | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/drivers/staging/rdma/hfi1/diag.c b/drivers/staging/rdma/hfi1/diag.c
index 0643f3716719..efc0d2239311 100644
--- a/drivers/staging/rdma/hfi1/diag.c
+++ b/drivers/staging/rdma/hfi1/diag.c
@@ -946,12 +946,14 @@ static ssize_t hfi1_snoop_read(struct file *fp, char 
__user *data,
                                ret = -EFAULT;
                        else
                                ret = packet->total_len;
-               } else
+               } else {
                        ret = -EINVAL;
+               }
 
                kfree(packet);
-       } else
+       } else {
                spin_unlock_irqrestore(&dd->hfi1_snoop.snoop_lock, flags);
+       }
 
        return ret;
 }
-- 
1.8.2

--
To unsubscribe from this list: send the line "unsubscribe linux-rdma" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to