Subject: [PATCH] needs for ioremap_nocache() Cc: Arjan van de Ven , Jesse Barnes commit aa42d7c6138afdc54f74e971456a0fbfec16b77b ("PCI: introduce an pci_ioremap(pdev, barnr) function") added a static inline function that calls ioremap_nocache(), causing a compile error on m68k: | In file included from drivers/ide/ide.c:58: | include/linux/pci.h: In function 'pci_ioremap_bar': | include/linux/pci.h:1132: error: implicit declaration of function 'ioremap_nocache' | include/linux/pci.h:1133: warning: return makes pointer from integer without a cast | In file included from include/linux/bio.h:30, | from include/linux/blkdev.h:17, | from include/linux/ide.h:13, | from drivers/ide/ide.c:59: Include to provide the prototype for ioremap_nocache(). Signed-off-by: Geert Uytterhoeven --- FWIW... Discovered in the linux-next builds on Oct 21, which was actually the one of Oct 20 (Ozlabs time) Discovered in the mainline builds two day later include/linux/pci.h | 1 + 1 file changed, 1 insertion(+) --- a/include/linux/pci.h +++ b/include/linux/pci.h @@ -44,6 +44,7 @@ #include #include +#include #include #include #include