From patchwork Fri May 31 22:22:38 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Arnd Bergmann X-Patchwork-Id: 2645981 Return-Path: X-Original-To: patchwork-linux-arm@patchwork.kernel.org Delivered-To: patchwork-process-083081@patchwork1.kernel.org Received: from casper.infradead.org (casper.infradead.org [85.118.1.10]) by patchwork1.kernel.org (Postfix) with ESMTP id 8EAAD3FD4E for ; Fri, 31 May 2013 22:27:29 +0000 (UTC) Received: from merlin.infradead.org ([2001:4978:20e::2]) by casper.infradead.org with esmtps (Exim 4.80.1 #2 (Red Hat Linux)) id 1UiXl8-000758-5l; Fri, 31 May 2013 22:25:19 +0000 Received: from localhost ([::1] helo=merlin.infradead.org) by merlin.infradead.org with esmtp (Exim 4.80.1 #2 (Red Hat Linux)) id 1UiXkK-0004L5-QO; Fri, 31 May 2013 22:24:28 +0000 Received: from moutng.kundenserver.de ([212.227.126.171]) by merlin.infradead.org with esmtps (Exim 4.80.1 #2 (Red Hat Linux)) id 1UiXjN-0004AL-2F for linux-arm-kernel@lists.infradead.org; Fri, 31 May 2013 22:23:32 +0000 Received: from wuerfel.lan (HSI-KBW-095-208-002-043.hsi5.kabel-badenwuerttemberg.de [95.208.2.43]) by mrelayeu.kundenserver.de (node=mreu3) with ESMTP (Nemesis) id 0Mfwoa-1V5jPc2kya-00NBIc; Sat, 01 Jun 2013 00:23:00 +0200 From: Arnd Bergmann To: linux-kernel@vger.kernel.org Subject: [PATCH 01/15] irqdomain: export irq_domain_add_simple Date: Sat, 1 Jun 2013 00:22:38 +0200 Message-Id: <1370038972-2318779-2-git-send-email-arnd@arndb.de> X-Mailer: git-send-email 1.8.1.2 In-Reply-To: <1370038972-2318779-1-git-send-email-arnd@arndb.de> References: <1370038972-2318779-1-git-send-email-arnd@arndb.de> X-Provags-ID: V02:K0:E/poqzUDoHWbCqkaJmu9ovoKVH2U4R16KlL4jGLlKkn HuZ5FEMH7EdHbmjUk1r+i8D5inVs4qjPZ1jppbEG3fCf5ZLm+s N7JSxu4ax4jFty6GZ3bZmUJoCZAJ+N6B5TFhFiBoYEyh7SarY9 Owx+JgBGa7TyWu6aoP/e/tj+vW20Jy6mR2VhDiX9UEdlINdcVm Kp8rl6JxzljyhKq5pZuXY/xKNo81DaZDOlUrTOefPYf1vuH9/k SgYmJpF96Ef742hoIs9mucIT05fMW+fP3GK9gMmQwcqaDUtG3a zNRziKGvdBAgRVCn8dQhwcNC+EijPy013iuCVG3iAnM7zKPGFV 2Md/cR5aqXYq8xMptGP1YtUU3Uc6vJiIdtrFgAttm X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20130531_182329_377048_FD1EA731 X-CRM114-Status: UNSURE ( 8.62 ) X-CRM114-Notice: Please train this message. X-Spam-Score: -1.9 (-) X-Spam-Report: SpamAssassin version 3.3.2 on merlin.infradead.org summary: Content analysis details: (-1.9 points) pts rule name description ---- ---------------------- -------------------------------------------------- -0.0 RCVD_IN_DNSWL_NONE RBL: Sender listed at http://www.dnswl.org/, no trust [212.227.126.171 listed in list.dnswl.org] -0.0 SPF_HELO_PASS SPF: HELO matches SPF record -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% [score: 0.0000] Cc: Laurent Pinchart , Arnd Bergmann , Benjamin Herrenschmidt , Magnus Damm , Grant Likely , patches@lists.linaro.org, Thomas Gleixner , linux-arm-kernel@lists.infradead.org X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+patchwork-linux-arm=patchwork.kernel.org@lists.infradead.org All other irq_domain_add_* functions are exported already, and apparently this one got left out by mistake, which causes build errors for ARM allmodconfig kernels: ERROR: "irq_domain_add_simple" [drivers/gpio/gpio-rcar.ko] undefined! ERROR: "irq_domain_add_simple" [drivers/gpio/gpio-em.ko] undefined! Signed-off-by: Arnd Bergmann Acked-by: Simon Horman Cc: Benjamin Herrenschmidt Cc: Grant Likely Cc: Thomas Gleixner Cc: Laurent Pinchart Cc: Magnus Damm --- kernel/irq/irqdomain.c | 1 + 1 file changed, 1 insertion(+) diff --git a/kernel/irq/irqdomain.c b/kernel/irq/irqdomain.c index af804b5..47d0564 100644 --- a/kernel/irq/irqdomain.c +++ b/kernel/irq/irqdomain.c @@ -194,6 +194,7 @@ struct irq_domain *irq_domain_add_simple(struct device_node *of_node, /* A linear domain is the default */ return irq_domain_add_linear(of_node, size, ops, host_data); } +EXPORT_SYMBOL_GPL(irq_domain_add_simple); /** * irq_domain_add_legacy() - Allocate and register a legacy revmap irq_domain.