From: aybuke ozdemir Date: Thu, 26 Feb 2015 21:45:48 +0000 (+0200) Subject: Staging: lustre: Remove space after the name of that function X-Git-Tag: v4.1-rc1~152^2~138^2~872 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=ff0dd127432f003f11d8312c37bb384da009307a;p=karo-tx-linux.git Staging: lustre: Remove space after the name of that function Fix checkpatch.pl issues with "space prohibited between function name and open parenthesis" in file.c Signed-off-by: aybuke ozdemir Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/lustre/lustre/llite/file.c b/drivers/staging/lustre/lustre/llite/file.c index ab8f1a98c746..0fd113d58da0 100644 --- a/drivers/staging/lustre/lustre/llite/file.c +++ b/drivers/staging/lustre/lustre/llite/file.c @@ -693,7 +693,7 @@ restart: out_och_free: if (rc) { if (och_p && *och_p) { - OBD_FREE(*och_p, sizeof (struct obd_client_handle)); + OBD_FREE(*och_p, sizeof(struct obd_client_handle)); *och_p = NULL; /* OBD_FREE writes some magic there */ (*och_usecount)--; }