summaryrefslogtreecommitdiffstats
path: root/drivers/mtd/mtdoops.c
diff options
context:
space:
mode:
authorArtem Bityutskiy2011-12-23 17:03:17 +0100
committerDavid Woodhouse2012-01-09 19:25:22 +0100
commit7ae79d7ff1769a3e9c47076b46e4eaa11204a2ee (patch)
tree34c084261dd52d4f015f2399405824b9fcebda6f /drivers/mtd/mtdoops.c
parentmtd: introduce mtd_write interface (diff)
downloadkernel-qcow2-linux-7ae79d7ff1769a3e9c47076b46e4eaa11204a2ee.tar.gz
kernel-qcow2-linux-7ae79d7ff1769a3e9c47076b46e4eaa11204a2ee.tar.xz
kernel-qcow2-linux-7ae79d7ff1769a3e9c47076b46e4eaa11204a2ee.zip
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/mtdoops.c')
-rw-r--r--drivers/mtd/mtdoops.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/mtd/mtdoops.c b/drivers/mtd/mtdoops.c
index 9c9d58617c98..7be2018ffbcc 100644
--- a/drivers/mtd/mtdoops.c
+++ b/drivers/mtd/mtdoops.c
@@ -222,8 +222,8 @@ static void mtdoops_write(struct mtdoops_context *cxt, int panic)
hdr[1] = MTDOOPS_KERNMSG_MAGIC;
if (panic)
- ret = mtd->panic_write(mtd, cxt->nextpage * record_size,
- record_size, &retlen, cxt->oops_buf);
+ ret = mtd_panic_write(mtd, cxt->nextpage * record_size,
+ record_size, &retlen, cxt->oops_buf);
else
ret = mtd_write(mtd, cxt->nextpage * record_size,
record_size, &retlen, cxt->oops_buf);