Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755711AbbFQUSb (ORCPT ); Wed, 17 Jun 2015 16:18:31 -0400 Received: from mail-wi0-f174.google.com ([209.85.212.174]:34652 "EHLO mail-wi0-f174.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750856AbbFQUSZ (ORCPT ); Wed, 17 Jun 2015 16:18:25 -0400 From: Nicolai Stange To: Michal Simek Cc: Bjorn Helgaas Cc: Yinghai Lu Cc: Yijing Wang Cc: Nicolai Stange Cc: linux-kernel@vger.kernel.org Subject: [PATCH] microblaze: export symbol isa_io_base to modules Date: Wed, 17 Jun 2015 22:18:21 +0200 Message-ID: <878ubi5bsi.fsf@gmail.com> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.5 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1043 Lines: 32 Fix allmodconfig linking failer on microblaze: ERROR: "isa_io_base" [sound/pci/vx222/snd-vx222.ko] undefined! [...] Export the .bss symbol isa_io_base from pci-common.c by means of EXPORT_SYMBOL. Signed-off-by: Nicolai Stange --- arch/microblaze/pci/pci-common.c | 1 + 1 file changed, 1 insertion(+) diff --git a/arch/microblaze/pci/pci-common.c b/arch/microblaze/pci/pci-common.c index ae838ed..3252881 100644 --- a/arch/microblaze/pci/pci-common.c +++ b/arch/microblaze/pci/pci-common.c @@ -48,6 +48,7 @@ static int global_phb_number; /* Global phb counter */ resource_size_t isa_mem_base; unsigned long isa_io_base; +EXPORT_SYMBOL(isa_io_base); static int pci_bus_count; struct pci_controller *pcibios_alloc_controller(struct device_node *dev) -- 2.4.3 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/