diff options
author | Andre Haupt <andre@bitwigglers.org> | 2009-01-26 16:12:17 +0100 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2009-04-03 14:53:24 -0700 |
commit | 07d2a2823014927e3578377a07868400837a79c6 (patch) | |
tree | 39c28bd3e148eea5910d68ef20cc5a99cccaeed0 /drivers/staging | |
parent | cfde74517b32724a78896eda49198f147e12050d (diff) |
Staging: me4000: use linux/uaccess.h and linux/io.h
This fixes the following checkpatch.pl warnings:
WARNING: Use #include <linux/uaccess.h> instead of <asm/uaccess.h>
WARNING: Use #include <linux/io.h> instead of <asm/io.h>
Signed-off-by: Andre Haupt <andre@bitwigglers.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/staging')
-rw-r--r-- | drivers/staging/me4000/me4000.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/staging/me4000/me4000.c b/drivers/staging/me4000/me4000.c index e1c4a807890..dbe93f9a18c 100644 --- a/drivers/staging/me4000/me4000.c +++ b/drivers/staging/me4000/me4000.c @@ -36,8 +36,8 @@ #include <linux/vmalloc.h> #include <linux/slab.h> #include <asm/pgtable.h> -#include <asm/uaccess.h> -#include <asm/io.h> +#include <linux/uaccess.h> +#include <linux/io.h> #include <asm/system.h> /* Include-File for the Meilhaus ME-4000 I/O board */ |