From mboxrd@z Thu Jan 1 00:00:00 1970 From: Randy Dunlap Subject: [PATCH] x86: export 'pcibios_enabled' Date: Tue, 13 Mar 2012 13:30:27 -0700 Message-ID: <4F5FAE63.3090908@xenotime.net> References: <20120313204114.e160849af7dbe5a4b4e5c0ad@canb.auug.org.au> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Return-path: Received: from oproxy8-pub.bluehost.com ([69.89.22.20]:54580 "HELO oproxy8-pub.bluehost.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with SMTP id S1752814Ab2CMUa0 (ORCPT ); Tue, 13 Mar 2012 16:30:26 -0400 In-Reply-To: <20120313204114.e160849af7dbe5a4b4e5c0ad@canb.auug.org.au> Sender: linux-next-owner@vger.kernel.org List-ID: To: Stephen Rothwell Cc: linux-next@vger.kernel.org, LKML , Michal Januszewski , Florian Tobias Schandinat , linux-fbdev@vger.kernel.org, x86@kernel.org, Andrew Morton From: Randy Dunlap Export 'pcibios_enabled' so that when uvesafb is built as a loadable module (on X86_32), the build will succeed. ERROR: "pcibios_enabled" [drivers/video/uvesafb.ko] undefined! Signed-off-by: Randy Dunlap Cc: Michal Januszewski Cc: Florian Tobias Schandinat Cc: linux-fbdev@vger.kernel.org Cc: x86@kernel.org --- Applies to mainline; found in linux-next. arch/x86/pci/pcbios.c | 1 + 1 file changed, 1 insertion(+) --- linux-next-20120313.orig/arch/x86/pci/pcbios.c +++ linux-next-20120313/arch/x86/pci/pcbios.c @@ -27,6 +27,7 @@ #define PCIBIOS_HW_TYPE2_SPEC 0x20 int pcibios_enabled; +EXPORT_SYMBOL(pcibios_enabled); /* According to the BIOS specification at: * http://members.datafast.net.au/dft0802/specs/bios21.pdf, we could