diff options
author | Artem Bityutskiy <artem.bityutskiy@linux.intel.com> | 2011-12-23 12:18:22 -0500 |
---|---|---|
committer | David Woodhouse <David.Woodhouse@intel.com> | 2012-01-09 13:25:40 -0500 |
commit | b66005cd3e6f104e0a1b6492110c337269b53ec3 (patch) | |
tree | 248a5f72af42c122072183a5e3a411b97a36e3c4 /drivers/mtd/mtdpart.c | |
parent | 7799f9ac8d8ff2db14736950275249df442baeac (diff) |
mtd: introduce mtd_unlock 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 a5e7a2103dcf..d65af3752331 100644 --- a/drivers/mtd/mtdpart.c +++ b/drivers/mtd/mtdpart.c | |||
@@ -287,7 +287,7 @@ static int part_unlock(struct mtd_info *mtd, loff_t ofs, uint64_t len) | |||
287 | struct mtd_part *part = PART(mtd); | 287 | struct mtd_part *part = PART(mtd); |
288 | if ((len + ofs) > mtd->size) | 288 | if ((len + ofs) > mtd->size) |
289 | return -EINVAL; | 289 | return -EINVAL; |
290 | return part->master->unlock(part->master, ofs + part->offset, len); | 290 | return mtd_unlock(part->master, ofs + part->offset, len); |
291 | } | 291 | } |
292 | 292 | ||
293 | static int part_is_locked(struct mtd_info *mtd, loff_t ofs, uint64_t len) | 293 | static int part_is_locked(struct mtd_info *mtd, loff_t ofs, uint64_t len) |