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 /drivers/mtd | |
| 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 'drivers/mtd')
| -rw-r--r-- | drivers/mtd/ftl.c | 2 | ||||
| -rw-r--r-- | drivers/mtd/mtdblock.c | 4 | ||||
| -rw-r--r-- | drivers/mtd/mtdchar.c | 2 | ||||
| -rw-r--r-- | drivers/mtd/mtdconcat.c | 2 | ||||
| -rw-r--r-- | drivers/mtd/mtdpart.c | 2 | ||||
| -rw-r--r-- | drivers/mtd/mtdswap.c | 2 | ||||
| -rw-r--r-- | drivers/mtd/rfd_ftl.c | 2 | ||||
| -rw-r--r-- | drivers/mtd/ubi/kapi.c | 2 |
8 files changed, 9 insertions, 9 deletions
diff --git a/drivers/mtd/ftl.c b/drivers/mtd/ftl.c index d591b1d0a6c1..c9c90299c9e2 100644 --- a/drivers/mtd/ftl.c +++ b/drivers/mtd/ftl.c | |||
| @@ -651,7 +651,7 @@ static int reclaim_block(partition_t *part) | |||
| 651 | pr_debug("ftl_cs: waiting for transfer " | 651 | pr_debug("ftl_cs: waiting for transfer " |
| 652 | "unit to be prepared...\n"); | 652 | "unit to be prepared...\n"); |
| 653 | if (part->mbd.mtd->sync) | 653 | if (part->mbd.mtd->sync) |
| 654 | part->mbd.mtd->sync(part->mbd.mtd); | 654 | mtd_sync(part->mbd.mtd); |
| 655 | } else { | 655 | } else { |
| 656 | static int ne = 0; | 656 | static int ne = 0; |
| 657 | if (++ne < 5) | 657 | if (++ne < 5) |
diff --git a/drivers/mtd/mtdblock.c b/drivers/mtd/mtdblock.c index ac7f1f1faa2d..496e1a6e8029 100644 --- a/drivers/mtd/mtdblock.c +++ b/drivers/mtd/mtdblock.c | |||
| @@ -323,7 +323,7 @@ static int mtdblock_release(struct mtd_blktrans_dev *mbd) | |||
| 323 | if (!--mtdblk->count) { | 323 | if (!--mtdblk->count) { |
| 324 | /* It was the last usage. Free the cache */ | 324 | /* It was the last usage. Free the cache */ |
| 325 | if (mbd->mtd->sync) | 325 | if (mbd->mtd->sync) |
| 326 | mbd->mtd->sync(mbd->mtd); | 326 | mtd_sync(mbd->mtd); |
| 327 | vfree(mtdblk->cache_data); | 327 | vfree(mtdblk->cache_data); |
| 328 | } | 328 | } |
| 329 | 329 | ||
| @@ -343,7 +343,7 @@ static int mtdblock_flush(struct mtd_blktrans_dev *dev) | |||
| 343 | mutex_unlock(&mtdblk->cache_mutex); | 343 | mutex_unlock(&mtdblk->cache_mutex); |
| 344 | 344 | ||
| 345 | if (dev->mtd->sync) | 345 | if (dev->mtd->sync) |
| 346 | dev->mtd->sync(dev->mtd); | 346 | mtd_sync(dev->mtd); |
| 347 | return 0; | 347 | return 0; |
| 348 | } | 348 | } |
| 349 | 349 | ||
diff --git a/drivers/mtd/mtdchar.c b/drivers/mtd/mtdchar.c index 86308acb40e0..b5722ecf19d3 100644 --- a/drivers/mtd/mtdchar.c +++ b/drivers/mtd/mtdchar.c | |||
| @@ -155,7 +155,7 @@ static int mtdchar_close(struct inode *inode, struct file *file) | |||
| 155 | 155 | ||
| 156 | /* Only sync if opened RW */ | 156 | /* Only sync if opened RW */ |
| 157 | if ((file->f_mode & FMODE_WRITE) && mtd->sync) | 157 | if ((file->f_mode & FMODE_WRITE) && mtd->sync) |
| 158 | mtd->sync(mtd); | 158 | mtd_sync(mtd); |
| 159 | 159 | ||
| 160 | iput(mfi->ino); | 160 | iput(mfi->ino); |
| 161 | 161 | ||
diff --git a/drivers/mtd/mtdconcat.c b/drivers/mtd/mtdconcat.c index 6fdae191e1ba..cc2336edfe28 100644 --- a/drivers/mtd/mtdconcat.c +++ b/drivers/mtd/mtdconcat.c | |||
| @@ -620,7 +620,7 @@ static void concat_sync(struct mtd_info *mtd) | |||
| 620 | 620 | ||
| 621 | for (i = 0; i < concat->num_subdev; i++) { | 621 | for (i = 0; i < concat->num_subdev; i++) { |
| 622 | struct mtd_info *subdev = concat->subdev[i]; | 622 | struct mtd_info *subdev = concat->subdev[i]; |
| 623 | subdev->sync(subdev); | 623 | mtd_sync(subdev); |
| 624 | } | 624 | } |
| 625 | } | 625 | } |
| 626 | 626 | ||
diff --git a/drivers/mtd/mtdpart.c b/drivers/mtd/mtdpart.c index c0bfa88c82f3..2b545052795e 100644 --- a/drivers/mtd/mtdpart.c +++ b/drivers/mtd/mtdpart.c | |||
| @@ -301,7 +301,7 @@ static int part_is_locked(struct mtd_info *mtd, loff_t ofs, uint64_t len) | |||
| 301 | static void part_sync(struct mtd_info *mtd) | 301 | static void part_sync(struct mtd_info *mtd) |
| 302 | { | 302 | { |
| 303 | struct mtd_part *part = PART(mtd); | 303 | struct mtd_part *part = PART(mtd); |
| 304 | part->master->sync(part->master); | 304 | mtd_sync(part->master); |
| 305 | } | 305 | } |
| 306 | 306 | ||
| 307 | static int part_suspend(struct mtd_info *mtd) | 307 | static int part_suspend(struct mtd_info *mtd) |
diff --git a/drivers/mtd/mtdswap.c b/drivers/mtd/mtdswap.c index 85797390e3dd..cb794e761012 100644 --- a/drivers/mtd/mtdswap.c +++ b/drivers/mtd/mtdswap.c | |||
| @@ -1048,7 +1048,7 @@ static int mtdswap_flush(struct mtd_blktrans_dev *dev) | |||
| 1048 | struct mtdswap_dev *d = MTDSWAP_MBD_TO_MTDSWAP(dev); | 1048 | struct mtdswap_dev *d = MTDSWAP_MBD_TO_MTDSWAP(dev); |
| 1049 | 1049 | ||
| 1050 | if (d->mtd->sync) | 1050 | if (d->mtd->sync) |
| 1051 | d->mtd->sync(d->mtd); | 1051 | mtd_sync(d->mtd); |
| 1052 | return 0; | 1052 | return 0; |
| 1053 | } | 1053 | } |
| 1054 | 1054 | ||
diff --git a/drivers/mtd/rfd_ftl.c b/drivers/mtd/rfd_ftl.c index c594bb7abfa3..5426d42cdea7 100644 --- a/drivers/mtd/rfd_ftl.c +++ b/drivers/mtd/rfd_ftl.c | |||
| @@ -449,7 +449,7 @@ static int reclaim_block(struct partition *part, u_long *old_sector) | |||
| 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 | if (part->mbd.mtd->sync) |
| 452 | part->mbd.mtd->sync(part->mbd.mtd); | 452 | mtd_sync(part->mbd.mtd); |
| 453 | 453 | ||
| 454 | score = 0x7fffffff; /* MAX_INT */ | 454 | score = 0x7fffffff; /* MAX_INT */ |
| 455 | best_block = -1; | 455 | best_block = -1; |
diff --git a/drivers/mtd/ubi/kapi.c b/drivers/mtd/ubi/kapi.c index 1a35fc5e3b40..9f265cc1a0d3 100644 --- a/drivers/mtd/ubi/kapi.c +++ b/drivers/mtd/ubi/kapi.c | |||
| @@ -715,7 +715,7 @@ int ubi_sync(int ubi_num) | |||
| 715 | return -ENODEV; | 715 | return -ENODEV; |
| 716 | 716 | ||
| 717 | if (ubi->mtd->sync) | 717 | if (ubi->mtd->sync) |
| 718 | ubi->mtd->sync(ubi->mtd); | 718 | mtd_sync(ubi->mtd); |
| 719 | 719 | ||
| 720 | ubi_put_device(ubi); | 720 | ubi_put_device(ubi); |
| 721 | return 0; | 721 | return 0; |
