Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1259921

[PATCH v2 11/11] mtd: physmap_of: assign parent for the concatenated MTD

From Brian Norris <computersforpeace@gmail.com>
Newsgroups linux.kernel
Subject [PATCH v2 11/11] mtd: physmap_of: assign parent for the concatenated MTD
Date 2015-10-31 04:40 +0100
Message-ID <qpvbj-69C-15@gated-at.bofh.it> (permalink)
References <qpvbj-69C-5@gated-at.bofh.it>
Organization linux.* mail to news gateway

Show all headers | View raw


If there is more than one map region for this device, then the
concatenated MTD will not have a parent device assigned to it -- only
the sub-devices (which are not actually registered with the framework)
will have their parents assigned. Let's assign the concatenated device
correctly.

Signed-off-by: Brian Norris <computersforpeace@gmail.com>
---
v2: lumped into this series, since its context depends on this series

 drivers/mtd/maps/physmap_of.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/mtd/maps/physmap_of.c b/drivers/mtd/maps/physmap_of.c
index b78265688075..70c453144f00 100644
--- a/drivers/mtd/maps/physmap_of.c
+++ b/drivers/mtd/maps/physmap_of.c
@@ -309,6 +309,7 @@ static int of_flash_probe(struct platform_device *dev)
 	if (err)
 		goto err_out;
 
+	info->cmtd->dev.parent = &dev->dev;
 	mtd_set_of_node(info->cmtd, dp);
 	part_probe_types = of_get_probes(dp);
 	if (!part_probe_types) {
-- 
2.6.0.rc2.230.g3dd15c0

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Back to linux.kernel | Previous | Next | Find similar | Unroll thread


Thread

[PATCH v2 11/11] mtd: physmap_of: assign parent for the concatenated MTD Brian Norris <computersforpeace@gmail.com> - 2015-10-31 04:40 +0100

csiph-web