From patchwork Tue Jan 5 02:17:53 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Masahiro Yamada X-Patchwork-Id: 101212 Delivered-To: patch@linaro.org Received: by 10.112.130.2 with SMTP id oa2csp5706593lbb; Mon, 4 Jan 2016 18:18:23 -0800 (PST) X-Received: by 10.98.32.74 with SMTP id g71mr99309235pfg.46.1451960303130; Mon, 04 Jan 2016 18:18:23 -0800 (PST) Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id d77si12299215pfb.33.2016.01.04.18.18.22; Mon, 04 Jan 2016 18:18:23 -0800 (PST) Received-SPF: pass (google.com: best guess record for domain of devicetree-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of devicetree-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=devicetree-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753841AbcAECRg (ORCPT + 6 others); Mon, 4 Jan 2016 21:17:36 -0500 Received: from conuserg010.nifty.com ([202.248.44.36]:22837 "EHLO conuserg010-v.nifty.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1753756AbcAECRf (ORCPT ); Mon, 4 Jan 2016 21:17:35 -0500 Received: from beagle.diag.org (p14090-ipngnfx01kyoto.kyoto.ocn.ne.jp [153.142.97.90]) (authenticated) by conuserg010-v.nifty.com with ESMTP id u052HCsp001492; Tue, 5 Jan 2016 11:17:13 +0900 X-Nifty-SrcIP: [153.142.97.90] From: Masahiro Yamada To: devicetree@vger.kernel.org Cc: Paul Gortmaker , Arnd Bergmann , Olof Johansson , Masahiro Yamada , Frank Rowand , Rob Herring , linux-kernel@vger.kernel.org, Grant Likely Subject: [PATCH] of/platform: export of_default_bus_match_table Date: Tue, 5 Jan 2016 11:17:53 +0900 Message-Id: <1451960273-19934-1-git-send-email-yamada.masahiro@socionext.com> X-Mailer: git-send-email 1.9.1 Sender: devicetree-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: devicetree@vger.kernel.org Currently, drivers/bus/uniphier-system-bus.c is kept from being a module due to the unresolved reference to of_default_bus_match_table. Refer to commit 326ea45aa827 ("bus: uniphier: allow only built-in driver"). Signed-off-by: Masahiro Yamada --- drivers/of/platform.c | 1 + 1 file changed, 1 insertion(+) -- 1.9.1 -- To unsubscribe from this list: send the line "unsubscribe devicetree" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html diff --git a/drivers/of/platform.c b/drivers/of/platform.c index af98343..8d103e4 100644 --- a/drivers/of/platform.c +++ b/drivers/of/platform.c @@ -31,6 +31,7 @@ const struct of_device_id of_default_bus_match_table[] = { #endif /* CONFIG_ARM_AMBA */ {} /* Empty terminated list */ }; +EXPORT_SYMBOL(of_default_bus_match_table); static int of_dev_node_match(struct device *dev, void *data) {