summaryrefslogtreecommitdiffstats
path: root/include/linux
diff options
context:
space:
mode:
authorArtem Bityutskiy2011-12-28 14:55:42 +0100
committerDavid Woodhouse2012-01-09 19:26:09 +0100
commit10934478e44d9a5a7b16dadd89094fb608cf101e (patch)
tree603d4f5165fc032a28e5efaa872da685eea7bf32 /include/linux
parentmtd: introduce mtd_has_oob helper (diff)
downloadkernel-qcow2-linux-10934478e44d9a5a7b16dadd89094fb608cf101e.tar.gz
kernel-qcow2-linux-10934478e44d9a5a7b16dadd89094fb608cf101e.tar.xz
kernel-qcow2-linux-10934478e44d9a5a7b16dadd89094fb608cf101e.zip
mtd: do use mtd->point directly
Remove direct usage of the "mtd->point" function pointer. Instead, test the mtd_point() return code for '-EOPNOTSUPP'. Signed-off-by: Artem Bityutskiy <artem.bityutskiy@linux.intel.com> Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
Diffstat (limited to 'include/linux')
-rw-r--r--include/linux/mtd/mtd.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/linux/mtd/mtd.h b/include/linux/mtd/mtd.h
index 478701566ba7..b355a83e7cc2 100644
--- a/include/linux/mtd/mtd.h
+++ b/include/linux/mtd/mtd.h
@@ -259,6 +259,8 @@ static inline int mtd_point(struct mtd_info *mtd, loff_t from, size_t len,
size_t *retlen, void **virt, resource_size_t *phys)
{
*retlen = 0;
+ if (!mtd->point)
+ return -EOPNOTSUPP;
return mtd->point(mtd, from, len, retlen, virt, phys);
}