diff options
author | Artem Bityutskiy <artem.bityutskiy@linux.intel.com> | 2011-12-30 09:35:35 -0500 |
---|---|---|
committer | David Woodhouse <David.Woodhouse@intel.com> | 2012-01-09 13:26:21 -0500 |
commit | 327cf2922b4edf0439b219469722d2a502e37349 (patch) | |
tree | 6fe4c70d0b4693950e7e20286a3b66bab82ac821 /fs/jffs2/super.c | |
parent | 1dbebd32562b3c2caeca35960e5cb00bfcc12900 (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 'fs/jffs2/super.c')
-rw-r--r-- | fs/jffs2/super.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/fs/jffs2/super.c b/fs/jffs2/super.c index e78bf3cd1b73..5863a369d929 100644 --- a/fs/jffs2/super.c +++ b/fs/jffs2/super.c | |||
@@ -336,9 +336,7 @@ static void jffs2_put_super (struct super_block *sb) | |||
336 | jffs2_flash_cleanup(c); | 336 | jffs2_flash_cleanup(c); |
337 | kfree(c->inocache_list); | 337 | kfree(c->inocache_list); |
338 | jffs2_clear_xattr_subsystem(c); | 338 | jffs2_clear_xattr_subsystem(c); |
339 | if (c->mtd->sync) | 339 | mtd_sync(c->mtd); |
340 | mtd_sync(c->mtd); | ||
341 | |||
342 | D1(printk(KERN_DEBUG "jffs2_put_super returning\n")); | 340 | D1(printk(KERN_DEBUG "jffs2_put_super returning\n")); |
343 | } | 341 | } |
344 | 342 | ||