diff options
author | Tülin İzer <tulinizer@gmail.com> | 2013-05-17 10:12:34 +0300 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-05-17 10:05:56 -0700 |
commit | e6889b310eb997afe698fac9762203e11577af1e (patch) | |
tree | 81e51294e82357c6464c8f936cbedc9193b438d7 /drivers/usb/core | |
parent | 50c9ba311402f611b54b1da5c6d49873e907daee (diff) | |
download | linux-stable-e6889b310eb997afe698fac9762203e11577af1e.tar.gz linux-stable-e6889b310eb997afe698fac9762203e11577af1e.tar.bz2 linux-stable-e6889b310eb997afe698fac9762203e11577af1e.zip |
usb: devio: Fixed warning: 'use <linux/uacces.h> instead <asm/uacces.h>'
This patch fixes warning: 'use <linux/uacces.h> instead <asm/uacces.h>'
found by checkpatch in usb/devio.c.
Signed-off-by: Tülin İzer <tulinizer@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/usb/core')
-rw-r--r-- | drivers/usb/core/devio.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/core/devio.c b/drivers/usb/core/devio.c index caefc800f298..9374937f13c0 100644 --- a/drivers/usb/core/devio.c +++ b/drivers/usb/core/devio.c @@ -49,7 +49,7 @@ #include <linux/security.h> #include <linux/user_namespace.h> #include <linux/scatterlist.h> -#include <asm/uaccess.h> +#include <linux/uaccess.h> #include <asm/byteorder.h> #include <linux/moduleparam.h> |