The patch titled Subject: arch/sh/include/asm/io.h: provide prototypes for PCI I/O mapping in asm/io.h has been added to the -mm tree. Its filename is sh-provide-prototypes-for-pci-i-o-mapping-in-asm-ioh.patch This patch should soon appear at http://ozlabs.org/~akpm/mmots/broken-out/sh-provide-prototypes-for-pci-i-o-mapping-in-asm-ioh.patch and later at http://ozlabs.org/~akpm/mmotm/broken-out/sh-provide-prototypes-for-pci-i-o-mapping-in-asm-ioh.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/process/submit-checklist.rst when testing your code *** The -mm tree is included into linux-next and is updated there every 3-4 working days ------------------------------------------------------ From: Mark Brown <broonie@xxxxxxxxxx> Subject: arch/sh/include/asm/io.h: provide prototypes for PCI I/O mapping in asm/io.h Most architectures provide prototypes for the PCI I/O mapping operations when asm/io.h is included but SH doesn't currently do that, leading to for example warnings in sound/pci/hda/patch_ca0132.c when pci_iomap() is used on current -next. Make SH more consistent with other architectures by including asm-generic/pci_iomap.h in asm/io.h. Link: http://lkml.kernel.org/r/20181106175142.27988-1-broonie@xxxxxxxxxx Signed-off-by: Mark Brown <broonie@xxxxxxxxxx> Reported-by: kbuild test robot <lkp@xxxxxxxxx> Cc: Yoshinori Sato <ysato@xxxxxxxxxxxxxxxxxxxx> Cc: Rich Felker <dalias@xxxxxxxx> Cc: Arnd Bergmann <arnd@xxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- arch/sh/include/asm/io.h | 1 + 1 file changed, 1 insertion(+) --- a/arch/sh/include/asm/io.h~sh-provide-prototypes-for-pci-i-o-mapping-in-asm-ioh +++ a/arch/sh/include/asm/io.h @@ -24,6 +24,7 @@ #define __IO_PREFIX generic #include <asm/io_generic.h> #include <asm/io_trapped.h> +#include <asm-generic/pci_iomap.h> #include <mach/mangle-port.h> #define __raw_writeb(v,a) (__chk_io_ptr(a), *(volatile u8 __force *)(a) = (v)) _ Patches currently in -mm which might be from broonie@xxxxxxxxxx are sh-provide-prototypes-for-pci-i-o-mapping-in-asm-ioh.patch