aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDmitry Eremin-Solenikov <dbaryshkov@gmail.com>2011-06-09 06:54:41 -0400
committerArtem Bityutskiy <artem.bityutskiy@intel.com>2011-09-11 08:02:10 -0400
commitd117040be074fd1c019b751515f79efe99cd7d76 (patch)
treead096cfb9fb0841c34f671ab6d324dfe49bf181d
parent3a8fb12ae9fdbb712f11f9c73e5d08dc34f82118 (diff)
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 <dbaryshkov@gmail.com> Signed-off-by: Artem Bityutskiy <Artem.Bityutskiy@nokia.com>
-rw-r--r--drivers/mtd/maps/edb7312.c3
1 files changed, 2 insertions, 1 deletions
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)
88 } 88 }
89 if (mymtd) { 89 if (mymtd) {
90 mymtd->owner = THIS_MODULE; 90 mymtd->owner = THIS_MODULE;
91 mymtd->name = MTDID;
91 92
92 mtd_parts_nb = parse_mtd_partitions(mymtd, probes, &mtd_parts, MTDID); 93 mtd_parts_nb = parse_mtd_partitions(mymtd, probes, &mtd_parts, 0);
93 if (mtd_parts_nb > 0) 94 if (mtd_parts_nb > 0)
94 part_type = "detected"; 95 part_type = "detected";
95 96