Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f0265450 authored by Artem Bityutskiy's avatar Artem Bityutskiy Committed by David Woodhouse
Browse files

jffs2: remove direct mtd->point reference



Commit 10934478 did not remove now useless
"if (mtd->point)" check mistakingly - let's kill it now.

Signed-off-by: default avatarArtem Bityutskiy <artem.bityutskiy@linux.intel.com>
Signed-off-by: default avatarDavid Woodhouse <David.Woodhouse@intel.com>
parent 570469f3
Loading
Loading
Loading
Loading
+9 −11
Original line number Original line Diff line number Diff line
@@ -96,7 +96,6 @@ int jffs2_scan_medium(struct jffs2_sb_info *c)
#ifndef __ECOS
#ifndef __ECOS
	size_t pointlen, try_size;
	size_t pointlen, try_size;


	if (c->mtd->point) {
	ret = mtd_point(c->mtd, 0, c->mtd->size, &pointlen,
	ret = mtd_point(c->mtd, 0, c->mtd->size, &pointlen,
			(void **)&flashbuf, NULL);
			(void **)&flashbuf, NULL);
	if (!ret && pointlen < c->mtd->size) {
	if (!ret && pointlen < c->mtd->size) {
@@ -107,7 +106,6 @@ int jffs2_scan_medium(struct jffs2_sb_info *c)
	}
	}
	if (ret && ret != -EOPNOTSUPP)
	if (ret && ret != -EOPNOTSUPP)
		D1(printk(KERN_DEBUG "MTD point failed %d\n", ret));
		D1(printk(KERN_DEBUG "MTD point failed %d\n", ret));
	}
#endif
#endif
	if (!flashbuf) {
	if (!flashbuf) {
		/* For NAND it's quicker to read a whole eraseblock at a time,
		/* For NAND it's quicker to read a whole eraseblock at a time,