Welcome to mirror list, hosted at ThFree Co, Russian Federation.

uaccess.h « asm « include « m68k « arch - github.com/torvalds/linux.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 67b3481d6020f80087a6a034389a495d4efa40db (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#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