Staging: lustre: lov_obd: fixed a brace coding style issue

Fixed a coding style issue.

Signed-off-by: Nilesh kokane <Nilesh.Kokane05@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Nilesh Kokane 2015-10-22 22:42:43 +05:30 committed by Greg Kroah-Hartman
parent 0173844811
commit 7fc8f5a82b

View file

@ -2101,11 +2101,10 @@ static int lov_set_info_async(const struct lu_env *env, struct obd_export *exp,
}
for (i = 0; i < count; i++, val = (char *)val + incr) {
if (next_id) {
if (next_id)
tgt = lov->lov_tgts[((struct obd_id_info *)val)->idx];
} else {
else
tgt = lov->lov_tgts[i];
}
/* OST was disconnected */
if (!tgt || !tgt->ltd_exp)
continue;