aboutsummaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorKevin Hilman <khilman@deeprootsystems.com>2009-03-04 15:01:39 -0500
committerDavid Woodhouse <David.Woodhouse@intel.com>2009-03-20 09:15:55 -0400
commitd5e539ad7d8305f12d04b4a278f8cf791e3de4db (patch)
tree287957029b97af395209eb76168eac8fed3f17b8 /drivers
parent374555aeb64f450db04edb8c7c218d763f2a8781 (diff)
[MTD] [NAND] davinci: drop usage of cpu_is_* macro
Usage of davinci-specific cpu_is macros is not allowed in drivers. These options should be passed in through platform_data. Signed-off-by: Kevin Hilman <khilman@deeprootsystems.com> Cc: David Brownell <david-b@pacbell.net> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/mtd/nand/davinci_nand.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/drivers/mtd/nand/davinci_nand.c b/drivers/mtd/nand/davinci_nand.c
index 4bedd8dec61e..4034ac945041 100644
--- a/drivers/mtd/nand/davinci_nand.c
+++ b/drivers/mtd/nand/davinci_nand.c
@@ -33,7 +33,6 @@
33#include <linux/mtd/nand.h> 33#include <linux/mtd/nand.h>
34#include <linux/mtd/partitions.h> 34#include <linux/mtd/partitions.h>
35 35
36#include <mach/cpu.h>
37#include <mach/nand.h> 36#include <mach/nand.h>
38 37
39#include <asm/mach-types.h> 38#include <asm/mach-types.h>
@@ -392,8 +391,6 @@ static int __init nand_davinci_probe(struct platform_device *pdev)
392 /* use board-specific ECC config; else, the best available */ 391 /* use board-specific ECC config; else, the best available */
393 if (pdata) 392 if (pdata)
394 ecc_mode = pdata->ecc_mode; 393 ecc_mode = pdata->ecc_mode;
395 else if (cpu_is_davinci_dm355())
396 ecc_mode = NAND_ECC_HW_SYNDROME;
397 else 394 else
398 ecc_mode = NAND_ECC_HW; 395 ecc_mode = NAND_ECC_HW;
399 396