kernel/bounds.c defines an intentionally unused function foo, just to slurp out the generated assembly and obtain the values for some constants. Add a prototype of this function, to satisfy GCC (-Wmissing-prototypes) and Sparse (-Wdecl).
kernel/bounds.c:14:6: warning: no previous prototype for ‘foo’ [-Wmissing-prototypes] Signed-off-by: Josh Triplett <[email protected]> --- kernel/bounds.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/kernel/bounds.c b/kernel/bounds.c index 0c9b862..cfb4805 100644 --- a/kernel/bounds.c +++ b/kernel/bounds.c @@ -11,6 +11,8 @@ #include <linux/kbuild.h> #include <linux/page_cgroup.h> +void foo(void); + void foo(void) { /* The enum constants to put into include/generated/bounds.h */ -- 1.7.10.4 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to [email protected] More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/

