Release 4.11 arch/m68k/include/asm/uaccess.h
#ifdef __uClinux__
#include <asm/uaccess_no.h>
#else
#include <asm/uaccess_mm.h>
#endif
#ifdef CONFIG_CPU_HAS_NO_UNALIGNED
#include <asm-generic/uaccess-unaligned.h>
#else
#define __get_user_unaligned(x, ptr) __get_user((x), (ptr))
#define __put_user_unaligned(x, ptr) __put_user((x), (ptr))
#endif
Overall Contributors
Person | Tokens | Prop | Commits | CommitProp |
Geert Uytterhoeven | 28 | 68.29% | 1 | 33.33% |
Sam Ravnborg | 11 | 26.83% | 1 | 33.33% |
David Howells | 2 | 4.88% | 1 | 33.33% |
Total | 41 | 100.00% | 3 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.