aboutsummaryrefslogtreecommitdiffstats
path: root/include/net/kcm.h
diff options
context:
space:
mode:
authorArnd Bergmann <arnd@arndb.de>2016-03-10 19:31:12 +0100
committerDavid S. Miller <davem@davemloft.net>2016-03-10 14:42:03 -0500
commitf720d0caa0af2c33ad15310974c7320345ab4468 (patch)
tree22c852ac2cc99df4714c12c8c01a19355aaffbde /include/net/kcm.h
parentMerge tag 'linux-can-next-for-4.6-20160310' of git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next (diff)
downloadlinux-dev-f720d0caa0af2c33ad15310974c7320345ab4468.tar.xz
linux-dev-f720d0caa0af2c33ad15310974c7320345ab4468.zip
kcm: mark helper functions inline
The stub helper functions for the newly added kcm_proc_init/exit interfaces are defined as 'static' in a header file, which leads to build warnings for each file that includes them without calling them: include/net/kcm.h:183:12: error: 'kcm_proc_init' defined but not used [-Werror=unused-function] include/net/kcm.h:184:13: error: 'kcm_proc_exit' defined but not used [-Werror=unused-function] This marks the two functions as 'static inline' instead, which avoids the warnings and is obviously what was meant here. Signed-off-by: Arnd Bergmann <arnd@arndb.de> Fixes: cd6e111bf5be ("kcm: Add statistics and proc interfaces") Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/net/kcm.h')
-rw-r--r--include/net/kcm.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/net/kcm.h b/include/net/kcm.h
index 95c425ca97b6..2840b5825dcc 100644
--- a/include/net/kcm.h
+++ b/include/net/kcm.h
@@ -180,8 +180,8 @@ struct kcm_mux {
int kcm_proc_init(void);
void kcm_proc_exit(void);
#else
-static int kcm_proc_init(void) { return 0; }
-static void kcm_proc_exit(void) { }
+static inline int kcm_proc_init(void) { return 0; }
+static inline void kcm_proc_exit(void) { }
#endif
static inline void aggregate_psock_stats(struct kcm_psock_stats *stats,