diff options
author | Artem Bityutskiy <artem.bityutskiy@linux.intel.com> | 2011-12-23 12:15:39 -0500 |
---|---|---|
committer | David Woodhouse <David.Woodhouse@intel.com> | 2012-01-09 13:25:39 -0500 |
commit | 7799f9ac8d8ff2db14736950275249df442baeac (patch) | |
tree | 4e1cab283bae84b6a2133883265923e68ef5ac4e /drivers/mtd/mtdpart.c | |
parent | 85f2f2a809d658c15b574df02ede92090f45a1f2 (diff) |
mtd: introduce mtd_lock 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/mtdpart.c')
-rw-r--r-- | drivers/mtd/mtdpart.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mtd/mtdpart.c b/drivers/mtd/mtdpart.c index 2b545052795e..a5e7a2103dcf 100644 --- a/drivers/mtd/mtdpart.c +++ b/drivers/mtd/mtdpart.c | |||
@@ -279,7 +279,7 @@ static int part_lock(struct mtd_info *mtd, loff_t ofs, uint64_t len) | |||
279 | struct mtd_part *part = PART(mtd); | 279 | struct mtd_part *part = PART(mtd); |
280 | if ((len + ofs) > mtd->size) | 280 | if ((len + ofs) > mtd->size) |
281 | return -EINVAL; | 281 | return -EINVAL; |
282 | return part->master->lock(part->master, ofs + part->offset, len); | 282 | return mtd_lock(part->master, ofs + part->offset, len); |
283 | } | 283 | } |
284 | 284 | ||
285 | static int part_unlock(struct mtd_info *mtd, loff_t ofs, uint64_t len) | 285 | static int part_unlock(struct mtd_info *mtd, loff_t ofs, uint64_t len) |