[<prev] [next>] [day] [month] [year] [list]
Message-Id: <1438618549-907-1-git-send-email-shraddha.6596@gmail.com>
Date: Mon, 3 Aug 2015 21:45:49 +0530
From: Shraddha Barke <shraddha.6596@...il.com>
To: linux-kernel@...r.kernel.org, Julia Lawall <Julia.Lawall@...6.fr>,
Joe Perches <joe@...ches.com>, Jiayi Ye <yejiayily@...il.com>,
Greg Kroah-Hartman <gregkh@...uxfoundation.org>,
Andreas Dilger <andreas.dilger@...el.com>,
Oleg Drokin <oleg.drokin@...el.com>,
devel@...verdev.osuosl.org, HPDD-discuss@...ts.01.org
Cc: Shraddha Barke <shraddha.6596@...il.com>
Subject: [PATCH] Staging: lustre: Code Indentation
Correct indentation issues according to checkpatch.pl :
WARNING: suspect code indent for conditional statements
Signed-off-by: Shraddha Barke <shraddha.6596@...il.com>
---
drivers/staging/lustre/lustre/llite/rw.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/staging/lustre/lustre/llite/rw.c b/drivers/staging/lustre/lustre/llite/rw.c
index 991d20c..85e5d48 100644
--- a/drivers/staging/lustre/lustre/llite/rw.c
+++ b/drivers/staging/lustre/lustre/llite/rw.c
@@ -383,9 +383,9 @@ static int index_in_window(unsigned long index, unsigned long point,
unsigned long start = point - before, end = point + after;
if (start > point)
- start = 0;
+ start = 0;
if (end < point)
- end = ~0;
+ end = ~0;
return start <= index && index <= end;
}
--
2.1.0
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists