From: Heena Sirwani Date: Wed, 1 Oct 2014 09:06:27 +0000 (+0530) Subject: Staging: lustre: lnet: selftest: Made a function static. X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=d5bd05041631f6045130224eba1f50ef1c269826;p=linux-beck.git Staging: lustre: lnet: selftest: Made a function static. The following patch makes a function static as it was not used by other files. The patch fixes the following warning: WARNING: symbol brw_client_init was not declared. Should it be static? The above warning was reported by sparse. Signed-off-by: Heena Sirwani Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/lustre/lnet/selftest/brw_test.c b/drivers/staging/lustre/lnet/selftest/brw_test.c index bcce919c0433..ca1080b8681d 100644 --- a/drivers/staging/lustre/lnet/selftest/brw_test.c +++ b/drivers/staging/lustre/lnet/selftest/brw_test.c @@ -66,7 +66,7 @@ brw_client_fini(sfw_test_instance_t *tsi) } } -int +static int brw_client_init(sfw_test_instance_t *tsi) { sfw_session_t *sn = tsi->tsi_batch->bat_session;