aboutsummaryrefslogtreecommitdiffstats
path: root/fs/nfs
diff options
context:
space:
mode:
authorRandy Dunlap <rdunlap@xenotime.net>2012-07-27 11:49:26 -0700
committerTrond Myklebust <Trond.Myklebust@netapp.com>2012-07-30 17:30:24 -0400
commit0add3e8567a42b8137e26c0595a59f893d8592e0 (patch)
tree5ccc3076793162f73b8d953018875acaf9f9d85c /fs/nfs
parentNFS: exit_nfs_v4() shouldn't be an __exit function (diff)
downloadlinux-dev-0add3e8567a42b8137e26c0595a59f893d8592e0.tar.xz
linux-dev-0add3e8567a42b8137e26c0595a59f893d8592e0.zip
nfs: fix stub return type warnings
Fix numerous repeated warnings by making the stub function void instead of non-void: fs/nfs/nfs4_fs.h: In function 'nfs4_unregister_sysctl': fs/nfs/nfs4_fs.h:385:1: warning: no return statement in function returning non-void Signed-off-by: Randy Dunlap <rdunlap@xenotime.net> Cc: Trond Myklebust <Trond.Myklebust@netapp.com> Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
Diffstat (limited to 'fs/nfs')
-rw-r--r--fs/nfs/nfs4_fs.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/nfs/nfs4_fs.h b/fs/nfs/nfs4_fs.h
index b1ecacd8784a..5511690de8a5 100644
--- a/fs/nfs/nfs4_fs.h
+++ b/fs/nfs/nfs4_fs.h
@@ -380,7 +380,7 @@ static inline int nfs4_register_sysctl(void)
return 0;
}
-static inline int nfs4_unregister_sysctl(void)
+static inline void nfs4_unregister_sysctl(void)
{
}
#endif