Commit 132eacb7 authored by Darshana Padmadas's avatar Darshana Padmadas Committed by Greg Kroah-Hartman
Browse files

Staging: lustre: Make obd_proc_version_seq_show static



The function obd_proc_version_seq_show is only used in this
file, so make it static.

This eliminates the following sparse warning:
warning: symbol 'obd_proc_version_seq_show' was not declared. Should it be static?

Signed-off-by: default avatarDarshana Padmadas <darshanapadmadas@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 967db076
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -217,7 +217,7 @@ struct miscdevice obd_psdev = {


#if defined (CONFIG_PROC_FS)
int obd_proc_version_seq_show(struct seq_file *m, void *v)
static int obd_proc_version_seq_show(struct seq_file *m, void *v)
{
	seq_printf(m, "lustre: %s\nkernel: %s\nbuild:  %s\n",
		   LUSTRE_VERSION_STRING, "patchless_client", BUILD_VERSION);