summaryrefslogtreecommitdiff
path: root/drivers/staging/lustre/lustre/fid/fid_request.c
diff options
context:
space:
mode:
authorAntonio Murdaca <antoniomurdaca@gmail.com>2015-06-08 21:48:41 +0200
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2015-06-08 13:15:38 -0700
commit71e8dd9a2f8dc9fc14fe9b20515709cc33f4a255 (patch)
tree167f2e54a8a259167d32dec93976b43c4d90abe9 /drivers/staging/lustre/lustre/fid/fid_request.c
parent9ee81443b99ae3a022ba145ed62e22a5173e33f6 (diff)
staging: lustre: cleanup not needed else clauses
cleanup checkpatch.pl warnings about not needed else clauses after a break or return Signed-off-by: Antonio Murdaca <antonio.murdaca@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/lustre/lustre/fid/fid_request.c')
-rw-r--r--drivers/staging/lustre/lustre/fid/fid_request.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/drivers/staging/lustre/lustre/fid/fid_request.c b/drivers/staging/lustre/lustre/fid/fid_request.c
index 7b4e3c6782c3..1362783b7eab 100644
--- a/drivers/staging/lustre/lustre/fid/fid_request.c
+++ b/drivers/staging/lustre/lustre/fid/fid_request.c
@@ -203,10 +203,9 @@ static int seq_client_alloc_seq(const struct lu_env *env,
CERROR("%s: Can't allocate new meta-sequence, rc %d\n",
seq->lcs_name, rc);
return rc;
- } else {
- CDEBUG(D_INFO, "%s: New range - "DRANGE"\n",
- seq->lcs_name, PRANGE(&seq->lcs_space));
}
+ CDEBUG(D_INFO, "%s: New range - "DRANGE"\n",
+ seq->lcs_name, PRANGE(&seq->lcs_space));
} else {
rc = 0;
}