From mboxrd@z Thu Jan 1 00:00:00 1970 From: Josh Cartwright Subject: [PATCH RFC v2 1/5] of: Add empty for_each_available_child_of_node() macro definition Date: Mon, 10 Dec 2012 20:41:31 +0100 Message-ID: <0fed3abba1286c59e51087efa02514d79e79ac14.1377202730.git.joshc@codeaurora.org> References: Return-path: In-Reply-To: Sender: linux-kernel-owner@vger.kernel.org To: Grant Likely , Rob Herring , Greg Kroah-Hartman Cc: linux-kernel@vger.kernel.org, linux-arm-kernel@lists.infradead.org, linux-arm-msm@vger.kernel.org, Sagar Dharia , Gilad Avidov , Michael Bohan , Sylwester Nawrocki , Kyungmin Park List-Id: linux-arm-msm@vger.kernel.org From: Sylwester Nawrocki Add this empty macro definition so users can be compiled without excluding this macro call with preprocessor directives when CONFIG_OF is disabled. Signed-off-by: Sylwester Nawrocki Signed-off-by: Kyungmin Park --- This patch was first introduced in December @ http://thread.gmane.org/gmane.linux.drivers.devicetree/26315 include/linux/of.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/include/linux/of.h b/include/linux/of.h index 1fd08ca..fefffb3 100644 --- a/include/linux/of.h +++ b/include/linux/of.h @@ -369,6 +369,9 @@ static inline bool of_have_populated_dt(void) #define for_each_child_of_node(parent, child) \ while (0) +#define for_each_available_child_of_node(parent, child) \ + while (0) + static inline struct device_node *of_get_child_by_name( const struct device_node *node, const char *name) -- Qualcomm Innovation Center, Inc. is a member of Code Aurora Forum, hosted by The Linux Foundation