This is a preparation for the coming sysfs support.
Signed-off-by: Artem Bityutskiy <Artem.Bityutskiy@nokia.com>
* @eb_size: eraseblock size
* @min_io_size: minimum input/output unit size
* @subpage_size: sub-page size
- * @rdonly: non-zero if the device is read-only
+ * @writable: zero if the device is read-only
* @bb_allowed: non-zero if the MTD device may have bad eraseblocks
*/
struct mtd_dev_info
int eb_size;
int min_io_size;
int subpage_size;
- unsigned int rdonly:1;
+ unsigned int writable:1;
unsigned int bb_allowed:1;
};
}
mtd->num = mtd->minor / 2;
- mtd->rdonly = mtd->minor & 1;
+ mtd->writable = !(mtd->minor & 1);
fd = open(node, O_RDWR);
if (fd == -1)
break;
}
- if (!(ui.flags & MTD_WRITEABLE))
- mtd->rdonly = 1;
+ if (ui.flags & MTD_WRITEABLE)
+ mtd->writable = 1;
close(fd);
return 0;
*/
mtd.subpage_size = args.subpage_size;
- if (mtd.rdonly) {
+ if (!mtd.writable) {
errmsg("mtd%d (%s) is a read-only device", mtd.num, args.node);
goto out;
}