aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorH Hartley Sweeten <hartleys@visionengravers.com>2009-06-30 15:38:00 -0400
committerDavid Woodhouse <David.Woodhouse@intel.com>2009-09-04 04:35:12 -0400
commit44a1f2085e8fe07b3aecdab7c391ca057d75da0f (patch)
treeab17afddc341bac68ee5ffa37f8e20c8c96b8396
parentdff1550986a4c0e2a4e857c9085ef3cb66b2cec5 (diff)
mtd: ep93xx: cleanup includes in ts7250 nand driver
1. <linux/io.h> should be included not <asm/io.h> 2. add platform specific header <mach/ts72xx.h> Signed-off-by: H Hartley Sweeten <hsweeten@visionengravers.com> Cc: Lennert Buytenhek <buytenh@wantstofly.org> Signed-off-by: Artem Bityutskiy <Artem.Bityutskiy@nokia.com> Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
-rw-r--r--drivers/mtd/nand/ts7250.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/drivers/mtd/nand/ts7250.c b/drivers/mtd/nand/ts7250.c
index 2c410a011317..0f5562aeedc1 100644
--- a/drivers/mtd/nand/ts7250.c
+++ b/drivers/mtd/nand/ts7250.c
@@ -24,8 +24,11 @@
24#include <linux/mtd/mtd.h> 24#include <linux/mtd/mtd.h>
25#include <linux/mtd/nand.h> 25#include <linux/mtd/nand.h>
26#include <linux/mtd/partitions.h> 26#include <linux/mtd/partitions.h>
27#include <asm/io.h> 27#include <linux/io.h>
28
28#include <mach/hardware.h> 29#include <mach/hardware.h>
30#include <mach/ts72xx.h>
31
29#include <asm/sizes.h> 32#include <asm/sizes.h>
30#include <asm/mach-types.h> 33#include <asm/mach-types.h>
31 34