The patch titled Subject: m32r: make memset() global for CONFIG_KERNEL_BZIP2=y has been removed from the -mm tree. Its filename was m32r-make-memset-global-for-config_kernel_bzip2=y.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ From: Geert Uytterhoeven <geert@xxxxxxxxxxxxxx> Subject: m32r: make memset() global for CONFIG_KERNEL_BZIP2=y arch/m32r/boot/compressed/misc.c:31:14: error: static declaration of 'memset' follows non-static declaration make[5]: *** [arch/m32r/boot/compressed/misc.o] Error 1 make[4]: *** [arch/m32r/boot/compressed/vmlinux] Error 2 Remove the static keyword to fix this. Signed-off-by: Geert Uytterhoeven <geert@xxxxxxxxxxxxxx> Cc: Hirokazu Takata <takata@xxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- arch/m32r/boot/compressed/misc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN arch/m32r/boot/compressed/misc.c~m32r-make-memset-global-for-config_kernel_bzip2=y arch/m32r/boot/compressed/misc.c --- a/arch/m32r/boot/compressed/misc.c~m32r-make-memset-global-for-config_kernel_bzip2=y +++ a/arch/m32r/boot/compressed/misc.c @@ -28,7 +28,7 @@ static unsigned long free_mem_ptr; static unsigned long free_mem_end_ptr; #ifdef CONFIG_KERNEL_BZIP2 -static void *memset(void *s, int c, size_t n) +void *memset(void *s, int c, size_t n) { char *ss = s; _ Patches currently in -mm which might be from geert@xxxxxxxxxxxxxx are linux-next.patch mn10300-only-add-mmem-funcs-to-kbuild_cflags-if-gcc-supports-it.patch frv-kill-used-but-uninitialized-variable.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