Release 4.14 arch/m68k/include/asm/io.h
/* SPDX-License-Identifier: GPL-2.0 */
#ifdef __uClinux__
#include <asm/io_no.h>
#else
#include <asm/io_mm.h>
#endif
#define readb_relaxed(addr) readb(addr)
#define readw_relaxed(addr) readw(addr)
#define readl_relaxed(addr) readl(addr)
#define writeb_relaxed(b, addr) writeb(b, addr)
#define writew_relaxed(b, addr) writew(b, addr)
#define writel_relaxed(b, addr) writel(b, addr)
Overall Contributors
Person | Tokens | Prop | Commits | CommitProp |
Will Deacon | 48 | 77.42% | 1 | 25.00% |
Sam Ravnborg | 11 | 17.74% | 1 | 25.00% |
David Howells | 2 | 3.23% | 1 | 25.00% |
Greg Kroah-Hartman | 1 | 1.61% | 1 | 25.00% |
Total | 62 | 100.00% | 4 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.