diff options
author | Sachin Kamat <sachin.kamat@linaro.org> | 2013-07-03 18:06:03 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2013-07-03 19:07:48 -0400 |
commit | 91b80e4c3887fc26aa6c2c398b45478a09fac561 (patch) | |
tree | b3b3c80d23f22ac0ecc697d6e0543407dd1462eb | |
parent | d1bda80afd36c5eeb79a8f5a53c9b3e23350d3a9 (diff) |
drivers/rtc/rtc-rs5c313.c: include <linux/io.h> instead of <asm/io.h>
Use #include <linux/io.h> instead of <asm/io.h> as pointed out by
checkpatch.
Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
Cc: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
Cc: Jingoo Han <jg1.han@samsung.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
-rw-r--r-- | drivers/rtc/rtc-rs5c313.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/rtc/rtc-rs5c313.c b/drivers/rtc/rtc-rs5c313.c index 8089fc63e403..b603cc41ea77 100644 --- a/drivers/rtc/rtc-rs5c313.c +++ b/drivers/rtc/rtc-rs5c313.c | |||
@@ -47,7 +47,7 @@ | |||
47 | #include <linux/platform_device.h> | 47 | #include <linux/platform_device.h> |
48 | #include <linux/bcd.h> | 48 | #include <linux/bcd.h> |
49 | #include <linux/delay.h> | 49 | #include <linux/delay.h> |
50 | #include <asm/io.h> | 50 | #include <linux/io.h> |
51 | 51 | ||
52 | #define DRV_NAME "rs5c313" | 52 | #define DRV_NAME "rs5c313" |
53 | #define DRV_VERSION "1.13" | 53 | #define DRV_VERSION "1.13" |