Release 4.11 arch/m68k/include/asm/io.h
#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 | 78.69% | 1 | 33.33% |
Sam Ravnborg | 11 | 18.03% | 1 | 33.33% |
David Howells | 2 | 3.28% | 1 | 33.33% |
Total | 61 | 100.00% | 3 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.