drivers/rtc/rtc-s3c.c: replace #include header files from asm/* to linux/*
authorSachin Kamat <[email protected]>
Mon, 30 Jul 2012 21:41:48 +0000 (14:41 -0700)
committerLinus Torvalds <[email protected]>
Tue, 31 Jul 2012 00:25:18 +0000 (17:25 -0700)
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 <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
drivers/rtc/rtc-s3c.c

index 7e6af0b22f17d0e3d54bad2e8981689e82be8e81..bfbd92c8d1c9d9cba042b494cfde450066320dea 100644 (file)
 #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>