Skip to content
Commit f720d0ca authored by Arnd Bergmann's avatar Arnd Bergmann Committed by David S. Miller
Browse files

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: default avatarArnd Bergmann <arnd@arndb.de>
Fixes: cd6e111b

 ("kcm: Add statistics and proc interfaces")
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 798fee48
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment