Commit 5b34cd29 authored by Zoltán Lajos Kis's avatar Zoltán Lajos Kis Committed by Greg Kroah-Hartman
Browse files

staging: lustre: echo_client: fix sparse declaration warnings



Fixes the following sparse warnings:

drivers/staging/lustre/lustre/obdecho/echo_client.c:2142:5: warning: symbol 'echo_client_init' was not declared. Should it be static?
drivers/staging/lustre/lustre/obdecho/echo_client.c:2157:6: warning: symbol 'echo_client_exit' was not declared. Should it be static?

Signed-off-by: default avatarZoltán Lajos Kis <zoltan.lajos.kis@gmail.com&gt;">
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 5bb546f7
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -2139,7 +2139,7 @@ static struct obd_ops echo_client_obd_ops = {
	.o_disconnect  = echo_client_disconnect
};

int echo_client_init(void)
static int echo_client_init(void)
{
	int rc;

@@ -2154,7 +2154,7 @@ int echo_client_init(void)
	return rc;
}

void echo_client_exit(void)
static void echo_client_exit(void)
{
	class_unregister_type(LUSTRE_ECHO_CLIENT_NAME);
	lu_kmem_fini(echo_caches);