Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

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@vectorindia.org>
Cc: Richard Henderson <rth@twiddle.net>
Cc: Ivan Kokshaysky <ink@jurassic.park.msu.ru>
Cc: Matt Turner <mattst88@gmail.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>

authored by

Sudip Mukherjee and committed by
Linus Torvalds
969560d2 8d77a6d1

+3 -1
+3 -1
arch/alpha/include/asm/io.h
··· 297 297 unsigned long size) 298 298 { 299 299 return ioremap(offset, size); 300 - } 300 + } 301 + 302 + #define ioremap_uc ioremap_nocache 301 303 302 304 static inline void iounmap(volatile void __iomem *addr) 303 305 {