Re: [PATCH v5.1 11/13] of: Add nop implementation of of_get_next_parent()
From: Sakari Ailus <hidden>
Date: 2017-03-24 09:28:15
Also in:
linux-acpi
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-VuQAYsv1563Yd54FQh9/CA@public.gmane.org>
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.
quoted hunk
--- 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-X3B1VOXEql0@public.gmane.org XMPP: sailus-PCDdDYkjdNMDXYZnReoRVg@public.gmane.org -- To unsubscribe from this list: send the line "unsubscribe devicetree" in the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org More majordomo info at http://vger.kernel.org/majordomo-info.html