The patch titled m68k traps.c constraints has been removed from the -mm tree. Its filename is m68k-trapsc-constraints.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: m68k traps.c constraints From: Al Viro <viro@xxxxxxxxxxxxxxxx> Cast is not an lvalue; =r constraint wants an lvalue and really couldn't care whether it's void * or other pointer type. Signed-off-by: Al Viro <viro@xxxxxxxxxxxxxxxxxx> Cc: Roman Zippel <zippel@xxxxxxxxxxxxxx> Cc: Geert Uytterhoeven <geert@xxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- arch/m68k/kernel/traps.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN arch/m68k/kernel/traps.c~m68k-trapsc-constraints arch/m68k/kernel/traps.c --- a/arch/m68k/kernel/traps.c~m68k-trapsc-constraints +++ a/arch/m68k/kernel/traps.c @@ -114,7 +114,7 @@ void __init base_trap_init(void) if(MACH_IS_SUN3X) { extern e_vector *sun3x_prom_vbr; - __asm__ volatile ("movec %%vbr, %0" : "=r" ((void*)sun3x_prom_vbr)); + __asm__ volatile ("movec %%vbr, %0" : "=r" (sun3x_prom_vbr)); } /* setup the exception vector table */ _ Patches currently in -mm which might be from viro@xxxxxxxxxxxxxxxx are origin.patch kill-open-coded-offsetof-in-cm4000_csc-zero_dev.patch affs_fill_super-%s-abuses-2.patch slab-leaks3-default-y.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