The patch titled Add -Werror-implicit-function-declaration has been added to the -mm tree. Its filename is add-werror-implicit-function-declaration.patch *** Remember to use Documentation/SubmitChecklist when testing your code *** See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: Add -Werror-implicit-function-declaration From: Dave Jones <davej@xxxxxxxxxx> Add -Werror-implicit-function-declaration This makes builds fail sooner if something is implicitly defined instead of having to wait half an hour for it to fail at the linking stage. Signed-off-by: Dave Jones <davej@xxxxxxxxxx> Cc: Sam Ravnborg <sam@xxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- Makefile | 3 ++- 1 files changed, 2 insertions(+), 1 deletion(-) diff -puN Makefile~add-werror-implicit-function-declaration Makefile --- a/Makefile~add-werror-implicit-function-declaration +++ a/Makefile @@ -313,7 +313,8 @@ LINUXINCLUDE := -Iinclude \ CPPFLAGS := -D__KERNEL__ $(LINUXINCLUDE) CFLAGS := -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs \ - -fno-strict-aliasing -fno-common + -fno-strict-aliasing -fno-common \ + -Werror-implicit-function-declaration AFLAGS := -D__ASSEMBLY__ # Read KERNELRELEASE from include/config/kernel.release (if it exists) _ Patches currently in -mm which might be from davej@xxxxxxxxxx are origin.patch git-alsa.patch git-cpufreq.patch git-netdev-all.patch i386-remove-support-for-the-rise-cpu.patch fix-up-codingstyle-in-isofs.patch undeprecate-raw-driver.patch fix-typo-in-prefetchh.patch allow-softlockup-to-be-runtime-disabled.patch add-werror-implicit-function-declaration.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html