Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753166AbcCGTaW (ORCPT ); Mon, 7 Mar 2016 14:30:22 -0500 Received: from mail-wm0-f52.google.com ([74.125.82.52]:37044 "EHLO mail-wm0-f52.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752607AbcCGTaN (ORCPT ); Mon, 7 Mar 2016 14:30:13 -0500 From: Nicolai Stange To: Michal Simek Cc: Tomi Valkeinen , Takashi Iwai , Bjorn Helgaas , Lorenzo Pieralisi , Yijing Wang , Yinghai Lu , kbuild test robot , Nicolai Stange , linux-kernel@vger.kernel.org Subject: [PATCH] arch/microblaze: export isa_io_base to modules Date: Mon, 7 Mar 2016 20:29:24 +0100 Message-Id: <1457378964-9865-1-git-send-email-nicstange@gmail.com> X-Mailer: git-send-email 2.7.2 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1123 Lines: 32 As discovered by the kbuild test robot, an allmodconfig build on microblaze bails out with ERROR: "isa_io_base" [sound/pci/vx222/snd-vx222.ko] undefined! ERROR: "isa_io_base" [sound/pci/trident/snd-trident.ko] undefined! ERROR: "isa_io_base" [sound/pci/snd-via82xx.ko] undefined! ERROR: "isa_io_base" [sound/pci/snd-via82xx-modem.ko] undefined! ERROR: "isa_io_base" [sound/pci/snd-sonicvibes.ko] undefined! [... plus dozens more throughout the tree] Export isa_io_base to modules by means of EXPORT_SYMBOL(). Signed-off-by: Nicolai Stange --- arch/microblaze/pci/pci-common.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/arch/microblaze/pci/pci-common.c b/arch/microblaze/pci/pci-common.c index ae838ed..fba7a46 100644 --- a/arch/microblaze/pci/pci-common.c +++ b/arch/microblaze/pci/pci-common.c @@ -48,6 +48,8 @@ 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.7.2