Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755521AbbFQQyM (ORCPT ); Wed, 17 Jun 2015 12:54:12 -0400 Received: from bear.ext.ti.com ([192.94.94.41]:37932 "EHLO bear.ext.ti.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753033AbbFQQyA (ORCPT ); Wed, 17 Jun 2015 12:54:00 -0400 From: Suman Anna To: Grant Likely , Rob Herring CC: , , Ohad Ben-Cohen , Suman Anna Subject: [PATCH] of: define of_find_node_by_phandle for !CONFIG_OF Date: Wed, 17 Jun 2015 11:53:53 -0500 Message-ID: <1434560033-26681-1-git-send-email-s-anna@ti.com> X-Mailer: git-send-email 2.4.1 MIME-Version: 1.0 Content-Type: text/plain Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 968 Lines: 33 Define stub implementation for of_find_node_by_phandle() API so that users of this API can build properly even when CONFIG_OF is not defined. Signed-off-by: Suman Anna --- include/linux/of.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/include/linux/of.h b/include/linux/of.h index ddeaae6d2083..90dfdc47ae26 100644 --- a/include/linux/of.h +++ b/include/linux/of.h @@ -422,6 +422,11 @@ static inline struct device_node *of_find_node_opts_by_path(const char *path, return NULL; } +static inline struct device_node *of_find_node_by_phandle(phandle handle) +{ + return NULL; +} + static inline struct device_node *of_get_parent(const struct device_node *node) { return NULL; -- 2.4.1 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/