The patch titled Subject: alpha: lib: export __delay has been added to the -mm tree. Its filename is alpha-lib-export-__delay.patch This patch should soon appear at http://ozlabs.org/~akpm/mmots/broken-out/alpha-lib-export-__delay.patch and later at http://ozlabs.org/~akpm/mmotm/broken-out/alpha-lib-export-__delay.patch Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/SubmitChecklist when testing your code *** The -mm tree is included into linux-next and is updated there every 3-4 working days ------------------------------------------------------ From: Sudip Mukherjee <sudipm.mukherjee@xxxxxxxxx> Subject: alpha: lib: export __delay __delay was not exported as a result while building with allmodconfig we were getting build error of undefined symbol. __delay is being used by: drivers/net/phy/mdio-octeon.c Signed-off-by: Sudip Mukherjee <sudip@xxxxxxxxxxxxxxx> Cc: Richard Henderson <rth@xxxxxxxxxxx> Cc: Ivan Kokshaysky <ink@xxxxxxxxxxxxxxxxxxxx> Cc: Matt Turner <mattst88@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- arch/alpha/lib/udelay.c | 1 + 1 file changed, 1 insertion(+) diff -puN arch/alpha/lib/udelay.c~alpha-lib-export-__delay arch/alpha/lib/udelay.c --- a/arch/alpha/lib/udelay.c~alpha-lib-export-__delay +++ a/arch/alpha/lib/udelay.c @@ -30,6 +30,7 @@ __delay(int loops) " bgt %0,1b" : "=&r" (tmp), "=r" (loops) : "1"(loops)); } +EXPORT_SYMBOL(__delay); #ifdef CONFIG_SMP #define LPJ cpu_data[smp_processor_id()].loops_per_jiffy _ Patches currently in -mm which might be from sudipm.mukherjee@xxxxxxxxx are alpha-io-define-ioremap_uc.patch alpha-lib-export-__delay.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