Release 4.14 arch/um/include/asm/io.h
/* SPDX-License-Identifier: GPL-2.0 */
#ifndef _ASM_UM_IO_H
#define _ASM_UM_IO_H
#define ioremap ioremap
static inline void __iomem *ioremap(phys_addr_t offset, size_t size)
{
return (void __iomem *)(unsigned long)offset;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Logan Gunthorpe | 27 | 100.00% | 1 | 100.00% |
Total | 27 | 100.00% | 1 | 100.00% |
#define iounmap iounmap
static inline void iounmap(void __iomem *addr)
{
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Logan Gunthorpe | 11 | 100.00% | 1 | 100.00% |
Total | 11 | 100.00% | 1 | 100.00% |
#include <asm-generic/io.h>
#endif
Overall Contributors
Person | Tokens | Prop | Commits | CommitProp |
Logan Gunthorpe | 57 | 98.28% | 1 | 50.00% |
Greg Kroah-Hartman | 1 | 1.72% | 1 | 50.00% |
Total | 58 | 100.00% | 2 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.