aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/mtd/rfd_ftl.c
diff options
context:
space:
mode:
authorArtem Bityutskiy <artem.bityutskiy@linux.intel.com>2011-12-30 09:35:35 -0500
committerDavid Woodhouse <David.Woodhouse@intel.com>2012-01-09 13:26:21 -0500
commit327cf2922b4edf0439b219469722d2a502e37349 (patch)
tree6fe4c70d0b4693950e7e20286a3b66bab82ac821 /drivers/mtd/rfd_ftl.c
parent1dbebd32562b3c2caeca35960e5cb00bfcc12900 (diff)
mtd: do not use mtd->sync directly
This patch teaches 'mtd_sync()' to do nothing when the MTD driver does not have the '->sync()' method, which allows us to remove all direct 'mtd->sync' accesses. Signed-off-by: Artem Bityutskiy <artem.bityutskiy@linux.intel.com> Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
Diffstat (limited to 'drivers/mtd/rfd_ftl.c')
-rw-r--r--drivers/mtd/rfd_ftl.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/mtd/rfd_ftl.c b/drivers/mtd/rfd_ftl.c
index 5426d42cdea7..233b946e5d66 100644
--- a/drivers/mtd/rfd_ftl.c
+++ b/drivers/mtd/rfd_ftl.c
@@ -448,8 +448,7 @@ static int reclaim_block(struct partition *part, u_long *old_sector)
448 int rc; 448 int rc;
449 449
450 /* we have a race if sync doesn't exist */ 450 /* we have a race if sync doesn't exist */
451 if (part->mbd.mtd->sync) 451 mtd_sync(part->mbd.mtd);
452 mtd_sync(part->mbd.mtd);
453 452
454 score = 0x7fffffff; /* MAX_INT */ 453 score = 0x7fffffff; /* MAX_INT */
455 best_block = -1; 454 best_block = -1;