From: Dean Ancajas Date: Mon, 8 Dec 2014 18:36:33 +0000 (-0700) Subject: Staging: lustre: obd: Fix a coding style issue X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=4d4e1eef9a513437dad15d8d116a3f669e0d578d;p=openwrt%2Fstaging%2Fblogic.git Staging: lustre: obd: Fix a coding style issue Fixed a brace coding style issue for functions. Signed-off-by: Dean Michael Ancajas Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/lustre/lustre/obdclass/cl_object.c b/drivers/staging/lustre/lustre/obdclass/cl_object.c index ce96bd279111..c40bb6c45870 100644 --- a/drivers/staging/lustre/lustre/obdclass/cl_object.c +++ b/drivers/staging/lustre/lustre/obdclass/cl_object.c @@ -662,7 +662,8 @@ static int cl_env_store_init(void) { return cl_env_hash != NULL ? 0 :-ENOMEM; } -static void cl_env_store_fini(void) { +static void cl_env_store_fini(void) +{ cfs_hash_putref(cl_env_hash); }