From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753560AbbIENa5 (ORCPT ); Sat, 5 Sep 2015 09:30:57 -0400 Received: from mail-pa0-f41.google.com ([209.85.220.41]:33389 "EHLO mail-pa0-f41.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751787AbbIEN2q (ORCPT ); Sat, 5 Sep 2015 09:28:46 -0400 From: Shraddha Barke To: Greg Kroah-Hartman , Oleg Drokin , linux-kernel@vger.kernel.org, Greg Donald , Joe Perches Cc: Shraddha Barke Subject: [PATCH 02/10] Staging: lustre: ptlrpc: Remove braces for single statement blocks Date: Sat, 5 Sep 2015 18:58:20 +0530 Message-Id: <1441459708-2633-2-git-send-email-shraddha.6596@gmail.com> X-Mailer: git-send-email 2.1.4 In-Reply-To: <1441459708-2633-1-git-send-email-shraddha.6596@gmail.com> References: <1441459708-2633-1-git-send-email-shraddha.6596@gmail.com> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org The linux kernel coding style discourages use of braces for single statement blocks. This patch removes the unnecessary braces. The warning was detected using checkpatch.pl. Coccinelle was used to make the change. Signed-off-by: Shraddha Barke --- drivers/staging/lustre/lustre/ptlrpc/client.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/drivers/staging/lustre/lustre/ptlrpc/client.c b/drivers/staging/lustre/lustre/ptlrpc/client.c index c83a34a..a208620 100644 --- a/drivers/staging/lustre/lustre/ptlrpc/client.c +++ b/drivers/staging/lustre/lustre/ptlrpc/client.c @@ -1164,12 +1164,11 @@ static int ptlrpc_check_status(struct ptlrpc_request *req) return err < 0 ? err : -EINVAL; } - if (err < 0) { + if (err < 0) DEBUG_REQ(D_INFO, req, "status is %d", err); - } else if (err > 0) { + else if (err > 0) /* XXX: translate this error from net to host */ DEBUG_REQ(D_INFO, req, "status is %d", err); - } return err; } -- 2.1.4