From patchwork Fri Jul 6 09:02:46 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Attila Kinali X-Patchwork-Id: 1163721 Return-Path: X-Original-To: patchwork-linux-arm@patchwork.kernel.org Delivered-To: patchwork-process-083081@patchwork1.kernel.org Received: from merlin.infradead.org (merlin.infradead.org [205.233.59.134]) by patchwork1.kernel.org (Postfix) with ESMTP id 2B7BE3FE80 for ; Fri, 6 Jul 2012 09:11:36 +0000 (UTC) Received: from localhost ([::1] helo=merlin.infradead.org) by merlin.infradead.org with esmtp (Exim 4.76 #1 (Red Hat Linux)) id 1Sn4Un-0006LG-0u; Fri, 06 Jul 2012 09:06:37 +0000 Received: from casper.infradead.org ([2001:770:15f::2]) by merlin.infradead.org with esmtps (Exim 4.76 #1 (Red Hat Linux)) id 1Sn4Rs-0005WZ-2b for linux-arm-kernel@merlin.infradead.org; Fri, 06 Jul 2012 09:03:36 +0000 Received: from gs84.art-of-technology.ch ([212.126.160.84] helo=keitaro.local.aotag.ch) by casper.infradead.org with esmtp (Exim 4.76 #1 (Red Hat Linux)) id 1Sn4Rk-0003XP-II for linux-arm-kernel@lists.infradead.org; Fri, 06 Jul 2012 09:03:30 +0000 Received: from chise.local.aotag.ch (chise.local.aotag.ch [192.168.0.14]) by keitaro.local.aotag.ch (Postfix) with ESMTPS id 13A42A264; Fri, 6 Jul 2012 11:03:01 +0200 (CEST) Received: from attila by chise.local.aotag.ch with local (Exim 4.80) (envelope-from ) id 1Sn4RI-0002zF-SB; Fri, 06 Jul 2012 11:03:00 +0200 From: Attila Kinali To: linux-arm-kernel@lists.infradead.org Subject: [PATCH] ARM: mxs: Export missing symbols from mxs-dma.c Date: Fri, 6 Jul 2012 11:02:46 +0200 Message-Id: <1341565366-11441-1-git-send-email-attila@kinali.ch> X-Mailer: git-send-email 1.7.10 X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20120706_100328_806868_5ADD12B7 X-CRM114-Status: UNSURE ( 7.23 ) X-CRM114-Notice: Please train this message. X-Spam-Score: -1.9 (-) X-Spam-Report: SpamAssassin version 3.3.2 on casper.infradead.org summary: Content analysis details: (-1.9 points, 5.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- 0.0 SPF_FAIL SPF: sender does not match SPF record (fail) [SPF failed: Please see http://www.openspf.org/Why?s=mfrom; id=attila%40aotag.ch; ip=212.126.160.84; r=casper.infradead.org] -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% [score: 0.0000] Cc: Attila Kinali X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Sender: linux-arm-kernel-bounces@lists.infradead.org Errors-To: linux-arm-kernel-bounces+patchwork-linux-arm=patchwork.kernel.org@lists.infradead.org mxs-dma.c provides two functions mxs_dma_is_apbh and mxs_dma_is_apbx which are used at least in mxs-mmc.c. Building mxs-mmc as module fails due to those two symbols not being exported. Signed-off-by: Attila Kinali --- drivers/dma/mxs-dma.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/drivers/dma/mxs-dma.c b/drivers/dma/mxs-dma.c index c96ab15..4ea1909 100644 --- a/drivers/dma/mxs-dma.c +++ b/drivers/dma/mxs-dma.c @@ -779,3 +779,6 @@ static int __init mxs_dma_module_init(void) return platform_driver_probe(&mxs_dma_driver, mxs_dma_probe); } subsys_initcall(mxs_dma_module_init); + +EXPORT_SYMBOL(mxs_dma_is_apbh); +EXPORT_SYMBOL(mxs_dma_is_apbx);