From: Srikrishan Malik Date: Mon, 11 Aug 2014 18:27:37 +0000 (+0530) Subject: staging: lustre: move else on the same line as closing brace X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=78dd07983b405df2f98ae96137c69cb9e208b312;p=deliverable%2Flinux.git staging: lustre: move else on the same line as closing brace Fix the following checkpatch error: ERROR: else should follow close brace '}' Signed-off-by: Srikrishan Malik Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/lustre/lustre/mdc/mdc_request.c b/drivers/staging/lustre/lustre/mdc/mdc_request.c index d6fd21187806..ffe9e3dd74e6 100644 --- a/drivers/staging/lustre/lustre/mdc/mdc_request.c +++ b/drivers/staging/lustre/lustre/mdc/mdc_request.c @@ -587,8 +587,7 @@ int mdc_get_lustre_md(struct obd_export *exp, struct ptlrpc_request *req, lustre_swab_mdt_remote_perm); if (!md->remote_perm) GOTO(out, rc = -EPROTO); - } - else if (md->body->valid & OBD_MD_FLACL) { + } else if (md->body->valid & OBD_MD_FLACL) { /* for ACL, it's possible that FLACL is set but aclsize is zero. * only when aclsize != 0 there's an actual segment for ACL * in reply buffer.