aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/staging
diff options
context:
space:
mode:
authorTal Shorer <tal.shorer@gmail.com>2015-04-05 13:54:09 +0300
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2015-04-05 18:43:28 +0200
commitb183c11217e10c274720795daed5703c2186a459 (patch)
treeea31b395629c25e5d9fc1c3b24ef1bc1e57909da /drivers/staging
parentRevert "Staging: sm750fb: Fix C99 Comments" (diff)
downloadlinux-dev-b183c11217e10c274720795daed5703c2186a459.tar.xz
linux-dev-b183c11217e10c274720795daed5703c2186a459.zip
staging: lustre: fix sparse warning
Sparse reports: drivers/staging/lustre/lustre/obdclass/obd_mount.c:1284:6: warning: symbol 'lustre_kill_super' was not declared. Should it be static? Fix this warning by making lustre_kill_super static. It is not used outside this file. Signed-off-by: Tal Shorer <tal.shorer@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging')
-rw-r--r--drivers/staging/lustre/lustre/obdclass/obd_mount.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/lustre/lustre/obdclass/obd_mount.c b/drivers/staging/lustre/lustre/obdclass/obd_mount.c
index 3a7404148308..3437b2ecfc02 100644
--- a/drivers/staging/lustre/lustre/obdclass/obd_mount.c
+++ b/drivers/staging/lustre/lustre/obdclass/obd_mount.c
@@ -1286,7 +1286,7 @@ struct dentry *lustre_mount(struct file_system_type *fs_type, int flags,
return mount_nodev(fs_type, flags, &lmd2, lustre_fill_super);
}
-void lustre_kill_super(struct super_block *sb)
+static void lustre_kill_super(struct super_block *sb)
{
struct lustre_sb_info *lsi = s2lsi(sb);