The patch titled uml: fix a typo in do_uml_initcalls has been added to the -mm tree. Its filename is uml-fix-a-typo-in-do_uml_initcalls.patch See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: uml: fix a typo in do_uml_initcalls From: Jeff Dike <jdike@xxxxxxxxxxx> We had a spurious semicolon somehow. Signed-off-by: Jeff Dike <jdike@xxxxxxxxxxx> Cc: Paolo 'Blaisorblade' Giarrusso <blaisorblade@xxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- arch/um/os-Linux/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN arch/um/os-Linux/main.c~uml-fix-a-typo-in-do_uml_initcalls arch/um/os-Linux/main.c --- devel/arch/um/os-Linux/main.c~uml-fix-a-typo-in-do_uml_initcalls 2006-06-03 19:28:39.000000000 -0700 +++ devel-akpm/arch/um/os-Linux/main.c 2006-06-03 19:28:39.000000000 -0700 @@ -59,7 +59,7 @@ static __init void do_uml_initcalls(void initcall_t *call; call = &__uml_initcall_start; - while (call < &__uml_initcall_end){; + while (call < &__uml_initcall_end){ (*call)(); call++; } _ Patches currently in -mm which might be from jdike@xxxxxxxxxxx are uml-add-asm-irqflagsh.patch uml-fix-wall_to_monotonic-initialization.patch uml-fix-a-typo-in-do_uml_initcalls.patch uml-__user-annotation-in-arch_prctl.patch uml-more-__user-annotations.patch uml-add-ffreestanding-to-cflags.patch uml-make-copy__user-atomic.patch uml-fix-not_dead_yet-when-directory-is-in-bad-state.patch uml-rename-and-improve-actually_do_remove.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