[RFC PATCH 5/6] mtd: ubi: block: set GENHD_FL_NO_NVMEM
Daniel Golle
daniel at makrotopia.org
Wed Jul 19 15:03:49 PDT 2023
As the UBI volumes may already act as a NVMEM providers, emulated
ubiblock devices should not be considered NVMEM providers.
Signed-off-by: Daniel Golle <daniel at makrotopia.org>
---
drivers/mtd/ubi/block.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/mtd/ubi/block.c b/drivers/mtd/ubi/block.c
index 1d5148371991b..62d9461395b37 100644
--- a/drivers/mtd/ubi/block.c
+++ b/drivers/mtd/ubi/block.c
@@ -410,7 +410,7 @@ int ubiblock_create(struct ubi_volume_info *vi)
ret = -ENODEV;
goto out_cleanup_disk;
}
- gd->flags |= GENHD_FL_NO_PART;
+ gd->flags |= GENHD_FL_NO_PART | GENHD_FL_NO_NVMEM;
gd->private_data = dev;
sprintf(gd->disk_name, "ubiblock%d_%d", dev->ubi_num, dev->vol_id);
set_capacity(gd, disk_capacity);
--
2.41.0
More information about the linux-mtd
mailing list