From: Anil Belur Date: Thu, 19 Jun 2014 16:01:47 +0000 (+1000) Subject: staging: lustre: lustre: ldlm: ldlm_lib.c - removed unnecessary braces X-Git-Tag: v3.17-rc1~123^2~1686 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b7cfd6d4686a7b85aa3db2c40d53087fb1604969;p=platform%2Fkernel%2Flinux-exynos.git staging: lustre: lustre: ldlm: ldlm_lib.c - removed unnecessary braces - this change fixes "WARNING: braces {} are not necessary for single statement blocks" Signed-off-by: Anil Belur Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/lustre/lustre/ldlm/ldlm_lib.c b/drivers/staging/lustre/lustre/ldlm/ldlm_lib.c index 8bb5915..5d69af5a 100644 --- a/drivers/staging/lustre/lustre/ldlm/ldlm_lib.c +++ b/drivers/staging/lustre/lustre/ldlm/ldlm_lib.c @@ -74,9 +74,8 @@ static int import_set_conn(struct obd_import *imp, struct obd_uuid *uuid, if (create) { OBD_ALLOC(imp_conn, sizeof(*imp_conn)); - if (!imp_conn) { + if (!imp_conn) GOTO(out_put, rc = -ENOMEM); - } } spin_lock(&imp->imp_lock); @@ -662,9 +661,8 @@ void target_send_reply(struct ptlrpc_request *req, int rc, int fail_id) struct ptlrpc_reply_state *rs; struct obd_export *exp; - if (req->rq_no_reply) { + if (req->rq_no_reply) return; - } svcpt = req->rq_rqbd->rqbd_svcpt; rs = req->rq_reply_state;