diff options
author | Sachin Kamat <sachin.kamat@linaro.org> | 2012-07-30 14:41:48 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2012-07-30 17:25:18 -0700 |
commit | dbd9acbef2f178e74c2f2def23eb4e8c2bd14270 (patch) | |
tree | e8b9ca2500a7286fb7388c8ba9362bb4b35fd904 /drivers/rtc | |
parent | 8e74b6edc9b7befd9f7a61b9271384eeb1eb8251 (diff) | |
download | linux-3.10-dbd9acbef2f178e74c2f2def23eb4e8c2bd14270.tar.gz linux-3.10-dbd9acbef2f178e74c2f2def23eb4e8c2bd14270.tar.bz2 linux-3.10-dbd9acbef2f178e74c2f2def23eb4e8c2bd14270.zip |
drivers/rtc/rtc-s3c.c: replace #include header files from asm/* to linux/*
Fixes the following checkpatch 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: Sachin Kamat <sachin.kamat@linaro.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/rtc')
-rw-r--r-- | drivers/rtc/rtc-s3c.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/rtc/rtc-s3c.c b/drivers/rtc/rtc-s3c.c index 7e6af0b22f1..bfbd92c8d1c 100644 --- a/drivers/rtc/rtc-s3c.c +++ b/drivers/rtc/rtc-s3c.c @@ -26,10 +26,10 @@ #include <linux/log2.h> #include <linux/slab.h> #include <linux/of.h> +#include <linux/uaccess.h> +#include <linux/io.h> #include <mach/hardware.h> -#include <asm/uaccess.h> -#include <asm/io.h> #include <asm/irq.h> #include <plat/regs-rtc.h> |