On Fri, Mar 17, 2017 at 02:08:58PM +0200, Sakari Ailus wrote: > of_get_next_parent() was only defined if CONFIG_OF was set. Using the > function thus requires #ifdef CONFIG_OF ... #endif in all cases. Avoid > having to use pre-processor macros around the function by providing a nop > implementation of of_get_next_parent(). > > Signed-off-by: Sakari Ailus <sakari.ailus@xxxxxxxxxxxxxxx> As a result of the changes in v5.1 in the patch 12/13 ("device property: Add fwnode_get_next_parent()") of this set, this patch is no longer needed. If there are no objections, I'll drop it from the set. > --- > since v5: > > - Improved commit message. > > include/linux/of.h | 6 ++++++ > 1 file changed, 6 insertions(+) > > diff --git a/include/linux/of.h b/include/linux/of.h > index e5d4225f..cc212a0 100644 > --- a/include/linux/of.h > +++ b/include/linux/of.h > @@ -586,6 +586,12 @@ static inline struct device_node *of_get_parent(const struct device_node *node) > return NULL; > } > > +static inline struct device_node *of_get_next_parent( > + const struct device_node *node) > +{ > + return NULL; > +} > + > static inline struct device_node *of_get_next_child( > const struct device_node *node, struct device_node *prev) > { -- Sakari Ailus e-mail: sakari.ailus@xxxxxx XMPP: sailus@xxxxxxxxxxxxxx -- To unsubscribe from this list: send the line "unsubscribe devicetree" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html