aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/mtd/tests/mtd_speedtest.c
diff options
context:
space:
mode:
authorArtem Bityutskiy <artem.bityutskiy@linux.intel.com>2012-01-02 06:48:54 -0500
committerDavid Woodhouse <David.Woodhouse@intel.com>2012-01-09 13:26:24 -0500
commit8f461a730242c528ca221948edceca49266a3ffb (patch)
tree232b1d9ac6a74df87a84c9e1e6a61415afc9f583 /drivers/mtd/tests/mtd_speedtest.c
parent079c985e7a6f4ce60f931cebfdd5ee3c38347e31 (diff)
mtd: introduce mtd_can_have_bb helper
This patch introduces new 'mtd_can_have_bb()' helper function which checks whether the flash can have bad eraseblocks. Then it changes all the direct 'mtd->block_isbad' use cases with 'mtd_can_have_bb()'. Signed-off-by: Artem Bityutskiy <artem.bityutskiy@linux.intel.com> Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
Diffstat (limited to 'drivers/mtd/tests/mtd_speedtest.c')
-rw-r--r--drivers/mtd/tests/mtd_speedtest.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/mtd/tests/mtd_speedtest.c b/drivers/mtd/tests/mtd_speedtest.c
index 4d2ed5c0807d..2aec4f3b72be 100644
--- a/drivers/mtd/tests/mtd_speedtest.c
+++ b/drivers/mtd/tests/mtd_speedtest.c
@@ -336,8 +336,7 @@ static int scan_for_bad_eraseblocks(void)
336 return -ENOMEM; 336 return -ENOMEM;
337 } 337 }
338 338
339 /* NOR flash does not implement block_isbad */ 339 if (!mtd_can_have_bb(mtd))
340 if (mtd->block_isbad == NULL)
341 goto out; 340 goto out;
342 341
343 printk(PRINT_PREF "scanning for bad eraseblocks\n"); 342 printk(PRINT_PREF "scanning for bad eraseblocks\n");