Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752755AbdDLEmY (ORCPT ); Wed, 12 Apr 2017 00:42:24 -0400 Received: from mail-oi0-f66.google.com ([209.85.218.66]:35166 "EHLO mail-oi0-f66.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752089AbdDLEmE (ORCPT ); Wed, 12 Apr 2017 00:42:04 -0400 From: Florian Fainelli To: linux-kernel@vger.kernel.org Cc: andrew@lunn.ch, vivien.didelot@savoirfairelinux.com, Florian Fainelli , Lee Jones , Nicolas Ferre , Rob Herring , Frank Rowand , netdev@vger.kernel.org (open list:NETWORKING DRIVERS), devicetree@vger.kernel.org (open list:OPEN FIRMWARE AND FLATTENED DEVICE TREE) Subject: [PATCH v2 3/3] of: Make of_match_node() an inline stub for CONFIG_OF=n Date: Tue, 11 Apr 2017 21:41:56 -0700 Message-Id: <20170412044156.17351-4-f.fainelli@gmail.com> X-Mailer: git-send-email 2.9.3 In-Reply-To: <20170412044156.17351-1-f.fainelli@gmail.com> References: <20170412044156.17351-1-f.fainelli@gmail.com> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 856 Lines: 27 Make of_match_node() an inline function when CONFIG_OF=n which allows the compiler to eliminate warnings about unused variables. Signed-off-by: Florian Fainelli --- include/linux/of.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/include/linux/of.h b/include/linux/of.h index 21e6323de0f3..2803a85e81ec 100644 --- a/include/linux/of.h +++ b/include/linux/of.h @@ -839,7 +839,11 @@ static inline void of_property_clear_flag(struct property *p, unsigned long flag } #define of_match_ptr(_ptr) NULL -#define of_match_node(_matches, _node) NULL +static inline const struct of_device_id *of_match_node( + const struct of_device_id *matches, const struct device_node *node) +{ + return NULL; +} #endif /* CONFIG_OF */ /* Default string compare functions, Allow arch asm/prom.h to override */ -- 2.9.3