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/logfs/dev_mtd.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/logfs/dev_mtd.c')
-rw-r--r-- | fs/logfs/dev_mtd.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/fs/logfs/dev_mtd.c b/fs/logfs/dev_mtd.c index 136c7360a9b6..3f465882ee70 100644 --- a/fs/logfs/dev_mtd.c +++ b/fs/logfs/dev_mtd.c | |||
@@ -119,8 +119,7 @@ static void logfs_mtd_sync(struct super_block *sb) | |||
119 | { | 119 | { |
120 | struct mtd_info *mtd = logfs_super(sb)->s_mtd; | 120 | struct mtd_info *mtd = logfs_super(sb)->s_mtd; |
121 | 121 | ||
122 | if (mtd->sync) | 122 | mtd_sync(mtd); |
123 | mtd_sync(mtd); | ||
124 | } | 123 | } |
125 | 124 | ||
126 | static int logfs_mtd_readpage(void *_sb, struct page *page) | 125 | static int logfs_mtd_readpage(void *_sb, struct page *page) |