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 /fs/jffs2/super.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 'fs/jffs2/super.c')
-rw-r--r-- | fs/jffs2/super.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/jffs2/super.c b/fs/jffs2/super.c index e7e974454115..e78bf3cd1b73 100644 --- a/fs/jffs2/super.c +++ b/fs/jffs2/super.c | |||
@@ -337,7 +337,7 @@ static void jffs2_put_super (struct super_block *sb) | |||
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 | if (c->mtd->sync) |
340 | c->mtd->sync(c->mtd); | 340 | mtd_sync(c->mtd); |
341 | 341 | ||
342 | D1(printk(KERN_DEBUG "jffs2_put_super returning\n")); | 342 | D1(printk(KERN_DEBUG "jffs2_put_super returning\n")); |
343 | } | 343 | } |