diff options
author | Artem Bityutskiy <artem.bityutskiy@linux.intel.com> | 2011-12-23 11:03:17 -0500 |
---|---|---|
committer | David Woodhouse <David.Woodhouse@intel.com> | 2012-01-09 13:25:22 -0500 |
commit | 7ae79d7ff1769a3e9c47076b46e4eaa11204a2ee (patch) | |
tree | 34c084261dd52d4f015f2399405824b9fcebda6f /drivers/mtd/mtdpart.c | |
parent | eda95cbf75193808f62948fb0142ba0901d8bee2 (diff) |
mtd: introduce mtd_panic_write 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 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/mtd/mtdpart.c b/drivers/mtd/mtdpart.c index 96574a036567..9ed58f7d7466 100644 --- a/drivers/mtd/mtdpart.c +++ b/drivers/mtd/mtdpart.c | |||
@@ -201,8 +201,8 @@ static int part_panic_write(struct mtd_info *mtd, loff_t to, size_t len, | |||
201 | len = 0; | 201 | len = 0; |
202 | else if (to + len > mtd->size) | 202 | else if (to + len > mtd->size) |
203 | len = mtd->size - to; | 203 | len = mtd->size - to; |
204 | return part->master->panic_write(part->master, to + part->offset, | 204 | return mtd_panic_write(part->master, to + part->offset, len, retlen, |
205 | len, retlen, buf); | 205 | buf); |
206 | } | 206 | } |
207 | 207 | ||
208 | static int part_write_oob(struct mtd_info *mtd, loff_t to, | 208 | static int part_write_oob(struct mtd_info *mtd, loff_t to, |