From patchwork Thu Apr 25 17:28:54 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Arnd Bergmann X-Patchwork-Id: 2489411 Return-Path: X-Original-To: patchwork-linux-arm@patchwork.kernel.org Delivered-To: patchwork-process-083081@patchwork2.kernel.org Received: from casper.infradead.org (casper.infradead.org [85.118.1.10]) by patchwork2.kernel.org (Postfix) with ESMTP id F0FC3DF5B1 for ; Thu, 25 Apr 2013 17:37:06 +0000 (UTC) Received: from merlin.infradead.org ([205.233.59.134]) by casper.infradead.org with esmtps (Exim 4.80.1 #2 (Red Hat Linux)) id 1UVQ6C-0005u1-5i; Thu, 25 Apr 2013 17:36:48 +0000 Received: from localhost ([::1] helo=merlin.infradead.org) by merlin.infradead.org with esmtp (Exim 4.80.1 #2 (Red Hat Linux)) id 1UVQ17-0007KK-7m; Thu, 25 Apr 2013 17:31:33 +0000 Received: from moutng.kundenserver.de ([212.227.126.186]) by merlin.infradead.org with esmtps (Exim 4.80.1 #2 (Red Hat Linux)) id 1UVPys-00075L-Vd for linux-arm-kernel@lists.infradead.org; Thu, 25 Apr 2013 17:29:27 +0000 Received: from wuerfel.lan (HSI-KBW-095-208-002-043.hsi5.kabel-badenwuerttemberg.de [95.208.2.43]) by mrelayeu.kundenserver.de (node=mrbap4) with ESMTP (Nemesis) id 0Letzz-1UqiEg1qb1-00qh8r; Thu, 25 Apr 2013 19:29:05 +0200 From: Arnd Bergmann To: linux-arm-kernel@lists.infradead.org Subject: [PATCH 11/21] irqdomain: export irq_domain_add_simple Date: Thu, 25 Apr 2013 19:28:54 +0200 Message-Id: <1366910944-3033663-12-git-send-email-arnd@arndb.de> X-Mailer: git-send-email 1.8.1.2 In-Reply-To: <1366910944-3033663-1-git-send-email-arnd@arndb.de> References: <1366910944-3033663-1-git-send-email-arnd@arndb.de> X-Provags-ID: V02:K0:gXxxLlxKqeb+GSgCerZ1huBN2aeEpcCSWcMUHPZ8agi P0re8fT5Um8GRAu0J/bf9BIxg6wcQzIxeAlbG671sy3b5W6XBz VCelyu3fjJEtdO1UflmU+uqZ2mlAek4QdEMUbHS1D2F6kOg9w1 AWMYGopdExmCxHIc3K6Ou+yQk8lhNTZkGDP9XmC9X/Ku8NgRv1 epLVkRchxFTRkZSMjYwtkJ9L4XEA4n9hbNMSrLeOWecWrwTgCR R898LrRJWVNZQReLiDnvyXjQ+24kftTTTtjBE+Se1qhK7wU+tW wAqfLKKYpCCa3IEuOX7nexmnZHWRgEufvv4cNBcsbRhOnwvn5n Uk11Lf7S+MVzeTKDE+mEOGSh4o46tdN8vowQ02q+7 X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20130425_132915_349394_A2848FA5 X-CRM114-Status: UNSURE ( 8.47 ) 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.186 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 , linux-kernel@vger.kernel.org, Magnus Damm , Grant Likely , Simon Horman , Thomas Gleixner 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 Cc: Benjamin Herrenschmidt Cc: Grant Likely Cc: Thomas Gleixner Cc: Simon Horman Cc: Laurent Pinchart Cc: Magnus Damm Acked-by: Simon Horman --- kernel/irq/irqdomain.c | 1 + 1 file changed, 1 insertion(+) diff --git a/kernel/irq/irqdomain.c b/kernel/irq/irqdomain.c index 059a280..c532c15 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.