Commit 6e952685 authored by Aneesh Kumar K.V's avatar Aneesh Kumar K.V Committed by Boris Brezillon
Browse files

mtd: Use mtd->name when registering nvmem device



With this patch, we use the mtd->name instead of concatenating the name
with '0'.

Fixes: c4dfa25a ("mtd: add support for reading MTD devices via the nvmem API")
Signed-off-by: default avatarAneesh Kumar K.V <aneesh.kumar@linux.ibm.com>
Signed-off-by: default avatarBoris Brezillon <boris.brezillon@collabora.com>
parent d1393711
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -507,6 +507,7 @@ static int mtd_nvmem_add(struct mtd_info *mtd)
{
	struct nvmem_config config = {};

	config.id = -1;
	config.dev = &mtd->dev;
	config.name = mtd->name;
	config.owner = THIS_MODULE;