Release 4.12 arch/m68k/include/asm/uaccess.h
#ifdef __uClinux__
#include <asm/uaccess_no.h>
#else
#include <asm/uaccess_mm.h>
#endif
#include <asm/extable.h>
#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 | 63.64% | 1 | 25.00% |
Sam Ravnborg | 11 | 25.00% | 1 | 25.00% |
Al Viro | 3 | 6.82% | 1 | 25.00% |
David Howells | 2 | 4.55% | 1 | 25.00% |
Total | 44 | 100.00% | 4 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.