diff options
author | Artem Bityutskiy <artem.bityutskiy@linux.intel.com> | 2011-12-23 11:59:12 -0500 |
---|---|---|
committer | David Woodhouse <David.Woodhouse@intel.com> | 2012-01-09 13:25:34 -0500 |
commit | b0a31f7b2a668f00a8d0546dfeed65fac871b2da (patch) | |
tree | 7379a66d9bfd6ae067f090f1bebac5d47332f5cb /fs/jffs2/writev.c | |
parent | 4403dbfb4541d34e5db33db709094d57d09f7467 (diff) |
mtd: introduce mtd_writev 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/writev.c')
-rw-r--r-- | fs/jffs2/writev.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/jffs2/writev.c b/fs/jffs2/writev.c index b05710fd552a..d0ef068709ad 100644 --- a/fs/jffs2/writev.c +++ b/fs/jffs2/writev.c | |||
@@ -52,7 +52,7 @@ int jffs2_flash_direct_writev(struct jffs2_sb_info *c, const struct kvec *vecs, | |||
52 | } | 52 | } |
53 | 53 | ||
54 | if (c->mtd->writev) | 54 | if (c->mtd->writev) |
55 | return c->mtd->writev(c->mtd, vecs, count, to, retlen); | 55 | return mtd_writev(c->mtd, vecs, count, to, retlen); |
56 | else { | 56 | else { |
57 | return mtd_fake_writev(c->mtd, vecs, count, to, retlen); | 57 | return mtd_fake_writev(c->mtd, vecs, count, to, retlen); |
58 | } | 58 | } |