The patch titled Subject: alpha: io: define ioremap_uc has been added to the -mm tree. Its filename is alpha-io-define-ioremap_uc.patch This patch should soon appear at http://ozlabs.org/~akpm/mmots/broken-out/alpha-io-define-ioremap_uc.patch and later at http://ozlabs.org/~akpm/mmotm/broken-out/alpha-io-define-ioremap_uc.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: io: define ioremap_uc ioremap_uc was not defined and as a result while building with allmodconfig were getting build error of: implicit declaration of function 'ioremap_uc'. 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/include/asm/io.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff -puN arch/alpha/include/asm/io.h~alpha-io-define-ioremap_uc arch/alpha/include/asm/io.h --- a/arch/alpha/include/asm/io.h~alpha-io-define-ioremap_uc +++ a/arch/alpha/include/asm/io.h @@ -297,7 +297,9 @@ static inline void __iomem * ioremap_noc unsigned long size) { return ioremap(offset, size); -} +} + +#define ioremap_uc ioremap_nocache static inline void iounmap(volatile void __iomem *addr) { _ 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