staging: lustre: llite: Remove else after goto

If an "if" branch is terminated by a "goto", there's no need to have an
"else" statement and an indented block of code.

Remove the "else" statement to simplify the code flow.

Signed-off-by: Luis de Bethencourt <luisbg@kernel.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Luis de Bethencourt 2017-12-06 19:16:58 +00:00 committed by Greg Kroah-Hartman
parent 54fc95a7c5
commit ee4bf6ed3a

View File

@ -1339,9 +1339,9 @@ finish_req:
cmd == LL_IOC_MDC_GETINFO)) {
rc = 0;
goto skip_lmm;
} else {
goto out_req;
}
goto out_req;
}
if (cmd == IOC_MDC_GETFILESTRIPE ||