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

Configure Feed

Select the types of activity you want to include in your feed.

at v4.13 25 lines 693 B view raw
1#ifndef _ASM_CRIS_IO_H 2#define _ASM_CRIS_IO_H 3 4#include <asm/page.h> /* for __va, __pa */ 5#ifdef CONFIG_ETRAX_ARCH_V10 6#include <arch/io.h> 7#endif 8#include <asm-generic/iomap.h> 9#include <linux/kernel.h> 10 11extern void __iomem * __ioremap(unsigned long offset, unsigned long size, unsigned long flags); 12extern void __iomem * __ioremap_prot(unsigned long phys_addr, unsigned long size, pgprot_t prot); 13 14static inline void __iomem * ioremap (unsigned long offset, unsigned long size) 15{ 16 return __ioremap(offset, size, 0); 17} 18 19extern void iounmap(volatile void * __iomem addr); 20 21extern void __iomem * ioremap_nocache(unsigned long offset, unsigned long size); 22 23#include <asm-generic/io.h> 24 25#endif