diff options
author | Javier Martinez Canillas <javier@dowhile0.org> | 2018-02-25 23:30:48 +0100 |
---|---|---|
committer | Javier Martinez Canillas <javier@dowhile0.org> | 2018-02-25 23:30:48 +0100 |
commit | 26acb6fb5d972b5c45980e3298787758854ce499 (patch) | |
tree | 85a94a39e66cf711b688f157e1aa19eb52c9c207 | |
parent | b3bcf422dd969ae48103a630d74696ba30c10469 (diff) | |
download | ldd3-26acb6fb5d972b5c45980e3298787758854ce499.tar.gz |
scullv: Include <linux/uaccess.h> header for copy_*_user()
Signed-off-by: Javier Martinez Canillas <javier@dowhile0.org>
-rw-r--r-- | scullv/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scullv/main.c b/scullv/main.c index 1c0730f..35b7c20 100644 --- a/scullv/main.c +++ b/scullv/main.c @@ -27,7 +27,7 @@ #include <linux/seq_file.h> #include <linux/fcntl.h> /* O_ACCMODE */ #include <linux/aio.h> -#include <asm/uaccess.h> +#include <linux/uaccess.h> #include <linux/vmalloc.h> #include "scullv.h" /* local definitions */ |