1
0
Fork 0

Staging: lustre: ptlrpc: Remove braces for single statement blocks

The linux kernel coding style discourages use of braces for single
statement blocks. This patch removes the unnecessary braces.

The warning was detected using checkpatch.pl. Coccinelle was used to
make the change.

Signed-off-by: Shraddha Barke <shraddha.6596@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
hifive-unleashed-5.1
Shraddha Barke 2015-09-05 18:58:20 +05:30 committed by Greg Kroah-Hartman
parent e72f36e22c
commit 1b779d2e1b
1 changed files with 2 additions and 3 deletions

View File

@ -1164,12 +1164,11 @@ static int ptlrpc_check_status(struct ptlrpc_request *req)
return err < 0 ? err : -EINVAL;
}
if (err < 0) {
if (err < 0)
DEBUG_REQ(D_INFO, req, "status is %d", err);
} else if (err > 0) {
else if (err > 0)
/* XXX: translate this error from net to host */
DEBUG_REQ(D_INFO, req, "status is %d", err);
}
return err;
}