diff options
author | Amitoj Kaur Chawla <amitoj1606@gmail.com> | 2015-10-18 19:25:10 +0530 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2015-10-24 19:02:42 -0700 |
commit | 347cf6d109637b337dd3dd3ec777e9fd060d8644 (patch) | |
tree | 540e228b86d768033ed4993d6828f43e0aa6d5c1 /drivers | |
parent | a487db8b67044b98fddf5433d4a5c96a2ce06d3a (diff) |
staging: sm750fb: Replace include <asm/*.h> with include <linux/*.h>
Problem found using checkpatch.pl
WARNING: Use #include <linux/io.h> instead of <asm/io.h>
WARNING: Use #include <linux/uaccess.h> instead of <asm/uaccess.h>
Signed-off-by: Amitoj Kaur Chawla <amitoj1606@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/staging/sm750fb/ddk750_help.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/staging/sm750fb/ddk750_help.h b/drivers/staging/sm750fb/ddk750_help.h index 9b2d2d2c899b..5be814eed735 100644 --- a/drivers/staging/sm750fb/ddk750_help.h +++ b/drivers/staging/sm750fb/ddk750_help.h @@ -4,8 +4,8 @@ #ifndef USE_INTERNAL_REGISTER_ACCESS #include <linux/ioport.h> -#include <asm/io.h> -#include <asm/uaccess.h> +#include <linux/io.h> +#include <linux/uaccess.h> #include "sm750_help.h" /* software control endianness */ |