From: Dmitry Eremin-Solenikov Date: Thu, 9 Jun 2011 10:54:41 +0000 (+0400) Subject: mtd: edb7312: correctly pass MTD name to parsers X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=d117040be074fd1c019b751515f79efe99cd7d76;p=linux-beck.git mtd: edb7312: correctly pass MTD name to parsers cmdline partitions parser expects MTD name at mtd->name, instead of origin, while edb7312 passes MTDID as origin. Fix that. Signed-off-by: Dmitry Eremin-Solenikov Signed-off-by: Artem Bityutskiy --- diff --git a/drivers/mtd/maps/edb7312.c b/drivers/mtd/maps/edb7312.c index fe42a212bb3e..b07acd69277a 100644 --- a/drivers/mtd/maps/edb7312.c +++ b/drivers/mtd/maps/edb7312.c @@ -88,8 +88,9 @@ static int __init init_edb7312nor(void) } if (mymtd) { mymtd->owner = THIS_MODULE; + mymtd->name = MTDID; - mtd_parts_nb = parse_mtd_partitions(mymtd, probes, &mtd_parts, MTDID); + mtd_parts_nb = parse_mtd_partitions(mymtd, probes, &mtd_parts, 0); if (mtd_parts_nb > 0) part_type = "detected";