diff options
author | Javier Martinez Canillas <javier@dowhile0.org> | 2018-02-25 23:47:31 +0100 |
---|---|---|
committer | Javier Martinez Canillas <javier@dowhile0.org> | 2018-02-25 23:47:31 +0100 |
commit | 4c73281fed30b754c1dca8a77e4d4bb448a683ed (patch) | |
tree | bf9970db934b35eeaa358290c01c58217cb0627c | |
parent | c600b086ac0a10c5ac0a64fb027e99f8f4da399c (diff) | |
download | ldd3-4c73281fed30b754c1dca8a77e4d4bb448a683ed.tar.gz |
usb: Include <linux/uaccess.h> header for copy_*_user()
Signed-off-by: Javier Martinez Canillas <javier@dowhile0.org>
-rw-r--r-- | usb/usb-skeleton.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usb/usb-skeleton.c b/usb/usb-skeleton.c index 08eb9db..eff848f 100644 --- a/usb/usb-skeleton.c +++ b/usb/usb-skeleton.c @@ -20,7 +20,7 @@ #include <linux/module.h> #include <linux/kref.h> #include <linux/usb.h> -#include <asm/uaccess.h> +#include <linux/uaccess.h> /* Define these values to match your devices */ |