All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] of/platform: Initialise dev->fwnode appropriately
@ 2016-09-14 15:01 ` Robin Murphy
  0 siblings, 0 replies; 11+ messages in thread
From: Robin Murphy @ 2016-09-14 15:01 UTC (permalink / raw)
  To: robh+dt, frowand.list
  Cc: devicetree, linux-arm-kernel, linux-kernel, lorenzo.pieralisi,
	okaya, yisen.zhuang, salil.mehta

Whilst we're some of the way towards a universal firmware property
interface, drivers which deal with both OF and ACPI probing end up
having to do things like this:

    dev->of_node ? &dev->of_node->fwnode : dev->fwnode

This seems unnecessary, when the OF code could instead simply fill in
the device's fwnode when binding the of_node, and let the drivers use
dev->fwnode either way. Let's give it a go and see what falls out.

Signed-off-by: Robin Murphy <robin.murphy@arm.com>
---
 drivers/of/platform.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/drivers/of/platform.c b/drivers/of/platform.c
index f39ccd5aa701..f811d2796437 100644
--- a/drivers/of/platform.c
+++ b/drivers/of/platform.c
@@ -142,6 +142,7 @@ struct platform_device *of_device_alloc(struct device_node *np,
 	}
 
 	dev->dev.of_node = of_node_get(np);
+	dev->dev.fwnode = &np->fwnode;
 	dev->dev.parent = parent ? : &platform_bus;
 
 	if (bus_id)
@@ -241,6 +242,7 @@ static struct amba_device *of_amba_device_create(struct device_node *node,
 
 	/* setup generic device info */
 	dev->dev.of_node = of_node_get(node);
+	dev->dev.fwnode = &node->fwnode;
 	dev->dev.parent = parent ? : &platform_bus;
 	dev->dev.platform_data = platform_data;
 	if (bus_id)
-- 
2.8.1.dirty

^ permalink raw reply related	[flat|nested] 11+ messages in thread

end of thread, other threads:[~2016-09-16 12:07 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-09-14 15:01 [PATCH] of/platform: Initialise dev->fwnode appropriately Robin Murphy
2016-09-14 15:01 ` Robin Murphy
2016-09-15 13:36 ` Rob Herring
2016-09-15 13:36   ` Rob Herring
2016-09-15 13:36   ` Rob Herring
2016-09-16 11:12   ` Lorenzo Pieralisi
2016-09-16 11:12     ` Lorenzo Pieralisi
2016-09-16 11:12     ` Lorenzo Pieralisi
2016-09-16 12:07   ` Robin Murphy
2016-09-16 12:07     ` Robin Murphy
2016-09-16 12:07     ` Robin Murphy

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.