yaffs: fix to detect MLC/TLC NAND flash

Signed-off-by: Vladimir Zahradnik <vladimir.zahradnik@gmail.com>
This commit is contained in:
Vladimir Zahradnik 2016-12-25 00:20:17 +01:00 committed by Felix Fietkau
parent d8dde8c517
commit f277f45bd6
2 changed files with 2 additions and 2 deletions

View file

@ -259,7 +259,7 @@ struct mtd_info * yaffs_get_mtd_device(dev_t sdev)
return NULL; /* This isn't an mtd device */
/* Check it's NAND */
if (mtd->type != MTD_NANDFLASH) {
if (mtd->type != MTD_NANDFLASH && mtd->type != MTD_MLCNANDFLASH) {
yaffs_trace(YAFFS_TRACE_ALWAYS,
"yaffs: MTD device is not NAND it's type %d",
mtd->type);

View file

@ -2598,7 +2598,7 @@ static int yaffs_remount_fs(struct super_block *sb, int *flags, char *data)
}
/* Check it's NAND */
if (mtd->type != MTD_NANDFLASH) {
if (mtd->type != MTD_NANDFLASH && mtd->type != MTD_MLCNANDFLASH) {
yaffs_trace(YAFFS_TRACE_ALWAYS,
"MTD device is not NAND it's type %d",
mtd->type);