Thread (26 messages) 26 messages, 6 authors, 2018-10-11

Re: [RFC/PATCH 2/5] device property: introduce notion of subnodes for legacy boards

From: Heikki Krogerus <heikki.krogerus@linux.intel.com>
Date: 2018-09-20 10:22:21
Also in: linux-gpio, lkml

On Wed, Sep 19, 2018 at 10:13:26AM -0700, Dmitry Torokhov wrote:
quoted
quoted
diff --git a/drivers/base/pset_property.c b/drivers/base/pset_property.c
index 08ecc13080ae..63f2377aefe8 100644
--- a/drivers/base/pset_property.c
+++ b/drivers/base/pset_property.c
@@ -18,6 +18,11 @@ struct property_set {
 	struct device *dev;
 	struct fwnode_handle fwnode;
 	const struct property_entry *properties;
+
+	struct property_set *parent;
+	/* Entry in parent->children list */
+	struct list_head child_node;
+	struct list_head children;
Add

        const char *name;

and you can implement also pset_get_named_child_node().
Or
	char name[];

to avoid separate allocation.
Let's not do that, especially if you are planning on exporting this
structure. If the name is coming from .rodata, there is no need to
allocate anything for the name. Check kstrdup_const().
Alternatively, we can add it later when we need it, and add
device_add_named_child_properties().

I'll leave it up to Rafael to decide.
Fair enough.


Thanks,

-- 
heikki
Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help