diff options
author | Sachin Kamat <sachin.kamat@linaro.org> | 2013-07-03 15:06:00 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2013-07-03 16:07:48 -0700 |
commit | 4b30c9fca71b5f74fb53992791778b8c8ddf0ac5 (patch) | |
tree | fd8047102dfd650277696e3455ce49eab82345a3 /drivers/rtc/rtc-omap.c | |
parent | 4a8282d028b69b94ce86c3860be43a7608a0fd2c (diff) | |
download | blackbird-op-linux-4b30c9fca71b5f74fb53992791778b8c8ddf0ac5.tar.gz blackbird-op-linux-4b30c9fca71b5f74fb53992791778b8c8ddf0ac5.zip |
drivers/rtc/rtc-omap.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: George G. Davis <gdavis@mvista.com>
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>
Diffstat (limited to 'drivers/rtc/rtc-omap.c')
-rw-r--r-- | drivers/rtc/rtc-omap.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/rtc/rtc-omap.c b/drivers/rtc/rtc-omap.c index b0ba3fc991ea..6f6ac033d5d9 100644 --- a/drivers/rtc/rtc-omap.c +++ b/drivers/rtc/rtc-omap.c @@ -23,9 +23,7 @@ #include <linux/of.h> #include <linux/of_device.h> #include <linux/pm_runtime.h> - -#include <asm/io.h> - +#include <linux/io.h> /* The OMAP1 RTC is a year/month/day/hours/minutes/seconds BCD clock * with century-range alarm matching, driven by the 32kHz clock. |