diff options
author | Artem Bityutskiy <artem.bityutskiy@linux.intel.com> | 2011-12-23 12:03:12 -0500 |
---|---|---|
committer | David Woodhouse <David.Woodhouse@intel.com> | 2012-01-09 13:25:35 -0500 |
commit | 85f2f2a809d658c15b574df02ede92090f45a1f2 (patch) | |
tree | 7d4ae7ca646db856aca7f2509c404b9d938fee0b /drivers/mtd/ftl.c | |
parent | b0a31f7b2a668f00a8d0546dfeed65fac871b2da (diff) |
mtd: introduce mtd_sync interface
Signed-off-by: Artem Bityutskiy <artem.bityutskiy@linux.intel.com>
Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
Diffstat (limited to 'drivers/mtd/ftl.c')
-rw-r--r-- | drivers/mtd/ftl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mtd/ftl.c b/drivers/mtd/ftl.c index d591b1d0a6c1..c9c90299c9e2 100644 --- a/drivers/mtd/ftl.c +++ b/drivers/mtd/ftl.c | |||
@@ -651,7 +651,7 @@ static int reclaim_block(partition_t *part) | |||
651 | pr_debug("ftl_cs: waiting for transfer " | 651 | pr_debug("ftl_cs: waiting for transfer " |
652 | "unit to be prepared...\n"); | 652 | "unit to be prepared...\n"); |
653 | if (part->mbd.mtd->sync) | 653 | if (part->mbd.mtd->sync) |
654 | part->mbd.mtd->sync(part->mbd.mtd); | 654 | mtd_sync(part->mbd.mtd); |
655 | } else { | 655 | } else { |
656 | static int ne = 0; | 656 | static int ne = 0; |
657 | if (++ne < 5) | 657 | if (++ne < 5) |