The patch titled arm build fail: vfpsingle.c has been added to the -mm tree. Its filename is pr_debug-check-pr_debug-arguments-arm-fix.patch See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: arm build fail: vfpsingle.c From: Frederik Deweerdt <deweerdt@xxxxxxx> It looks like Zach Brown's patch pr_debug-check-pr_debug-arguments worked as inteded. That is, it doesn't "allow completely incorrect code to build." :). The arm build fails with the following message: CC arch/arm/vfp/vfpsingle.o arch/arm/vfp/vfpsingle.c: In function `__vfp_single_normaliseround': arch/arm/vfp/vfpsingle.c:201: error: `func' undeclared (first use in this function) arch/arm/vfp/vfpsingle.c:201: error: (Each undeclared identifier is reported only once arch/arm/vfp/vfpsingle.c:201: error: for each function it appears in.) make[1]: *** [arch/arm/vfp/vfpsingle.o] Error 1 make: *** [arch/arm/vfp] Error 2 The following patch fixes the issue by using func only when DEBUG is defined. Signed-off-by: Frederik Deweerdt <frederik.deweerdt@xxxxxxxxx> Cc: Russell King <rmk@xxxxxxxxxxxxxxxx> Cc: Zach Brown <zach.brown@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- arch/arm/vfp/vfpsingle.c | 2 ++ 1 file changed, 2 insertions(+) diff -puN arch/arm/vfp/vfpsingle.c~pr_debug-check-pr_debug-arguments-arm-fix arch/arm/vfp/vfpsingle.c --- a/arch/arm/vfp/vfpsingle.c~pr_debug-check-pr_debug-arguments-arm-fix +++ a/arch/arm/vfp/vfpsingle.c @@ -198,8 +198,10 @@ u32 vfp_single_normaliseround(int sd, st vfp_single_dump("pack: final", vs); { s32 d = vfp_single_pack(vs); +#ifdef DEBUG pr_debug("VFP: %s: d(s%d)=%08x exceptions=%08x\n", func, sd, d, exceptions); +#endif vfp_put_float(d, sd); } _ Patches currently in -mm which might be from deweerdt@xxxxxxx are libata-add-40pin-short-cable-support-honour-drive-fix.patch bluetooth-use-gfp_atomic-in-_sock_creates-sk_alloc.patch fix-mem_write-return-value.patch pr_debug-check-pr_debug-arguments-arm-fix.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