Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754490AbbHCQRQ (ORCPT ); Mon, 3 Aug 2015 12:17:16 -0400 Received: from mail-pd0-f171.google.com ([209.85.192.171]:33187 "EHLO mail-pd0-f171.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753585AbbHCQRO (ORCPT ); Mon, 3 Aug 2015 12:17:14 -0400 From: Shraddha Barke To: linux-kernel@vger.kernel.org, Julia Lawall , Joe Perches , Jiayi Ye , Greg Kroah-Hartman , Andreas Dilger , Oleg Drokin , devel@driverdev.osuosl.org, HPDD-discuss@ml01.01.org Cc: Shraddha Barke Subject: [PATCH] Staging: lustre: Code Indentation Date: Mon, 3 Aug 2015 21:45:49 +0530 Message-Id: <1438618549-907-1-git-send-email-shraddha.6596@gmail.com> X-Mailer: git-send-email 2.1.0 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1056 Lines: 33 Correct indentation issues according to checkpatch.pl : WARNING: suspect code indent for conditional statements Signed-off-by: Shraddha Barke --- 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@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/