Release 4.14 arch/cris/include/asm/io.h
/* SPDX-License-Identifier: GPL-2.0 */
#ifndef _ASM_CRIS_IO_H
#define _ASM_CRIS_IO_H
#include <asm/page.h> /* for __va, __pa */
#ifdef CONFIG_ETRAX_ARCH_V10
#include <arch/io.h>
#endif
#include <asm-generic/iomap.h>
#include <linux/kernel.h>
extern void __iomem * __ioremap(unsigned long offset, unsigned long size, unsigned long flags);
extern void __iomem * __ioremap_prot(unsigned long phys_addr, unsigned long size, pgprot_t prot);
static inline void __iomem * ioremap (unsigned long offset, unsigned long size)
{
return __ioremap(offset, size, 0);
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Linus Torvalds | 25 | 92.59% | 1 | 33.33% |
Adrian Bunk | 1 | 3.70% | 1 | 33.33% |
Mikael Starvik | 1 | 3.70% | 1 | 33.33% |
Total | 27 | 100.00% | 3 | 100.00% |
extern void iounmap(volatile void * __iomem addr);
extern void __iomem * ioremap_nocache(unsigned long offset, unsigned long size);
#include <asm-generic/io.h>
#endif
Overall Contributors
Person | Tokens | Prop | Commits | CommitProp |
Linus Torvalds | 57 | 47.50% | 2 | 20.00% |
Mikael Starvik | 49 | 40.83% | 2 | 20.00% |
Rabin Vincent | 5 | 4.17% | 1 | 10.00% |
Mauro Carvalho Chehab | 3 | 2.50% | 1 | 10.00% |
Niklas Svensson (Niklas Cassel) | 3 | 2.50% | 1 | 10.00% |
Greg Kroah-Hartman | 1 | 0.83% | 1 | 10.00% |
Jesper Nilsson | 1 | 0.83% | 1 | 10.00% |
Adrian Bunk | 1 | 0.83% | 1 | 10.00% |
Total | 120 | 100.00% | 10 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.