From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1757374Ab2CSBDq (ORCPT ); Sun, 18 Mar 2012 21:03:46 -0400 Received: from oproxy4-pub.bluehost.com ([69.89.21.11]:48269 "HELO oproxy4-pub.bluehost.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with SMTP id S1754902Ab2CSBDn (ORCPT ); Sun, 18 Mar 2012 21:03:43 -0400 Message-ID: <4F6685ED.7040000@xenotime.net> Date: Sun, 18 Mar 2012 18:03:41 -0700 From: Randy Dunlap User-Agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.15) Gecko/20110323 Thunderbird/3.1.9 MIME-Version: 1.0 To: Wang YanQing , Stephen Rothwell , linux-next@vger.kernel.org, LKML , Michal Januszewski , Florian Tobias Schandinat , linux-fbdev@vger.kernel.org, x86@kernel.org, Andrew Morton Subject: [PATCH v2] x86: export 'pcibios_enabled' as GPL References: <20120313204114.e160849af7dbe5a4b4e5c0ad@canb.auug.org.au> <4F5FAE63.3090908@xenotime.net> <20120319003044.GA3744@udknight> In-Reply-To: <20120319003044.GA3744@udknight> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Identified-User: {1807:box742.bluehost.com:xenotime:xenotime.net} {sentby:smtp auth 50.53.38.135 authed with rdunlap@xenotime.net} Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org 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! Patch v2 uses EXPORT_SYMBOL_GPL() as requested. Signed-off-by: Randy Dunlap Cc: Michal Januszewski Cc: Florian Tobias Schandinat Cc: linux-fbdev@vger.kernel.org Cc: x86@kernel.org --- 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_GPL(pcibios_enabled); /* According to the BIOS specification at: * http://members.datafast.net.au/dft0802/specs/bios21.pdf, we could From mboxrd@z Thu Jan 1 00:00:00 1970 From: Randy Dunlap Date: Mon, 19 Mar 2012 01:03:41 +0000 Subject: [PATCH v2] x86: export 'pcibios_enabled' as GPL Message-Id: <4F6685ED.7040000@xenotime.net> List-Id: References: <20120313204114.e160849af7dbe5a4b4e5c0ad@canb.auug.org.au> <4F5FAE63.3090908@xenotime.net> <20120319003044.GA3744@udknight> In-Reply-To: <20120319003044.GA3744@udknight> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: Wang YanQing , Stephen Rothwell , 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! Patch v2 uses EXPORT_SYMBOL_GPL() as requested. Signed-off-by: Randy Dunlap Cc: Michal Januszewski Cc: Florian Tobias Schandinat Cc: linux-fbdev@vger.kernel.org Cc: x86@kernel.org --- 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_GPL(pcibios_enabled); /* According to the BIOS specification at: * http://members.datafast.net.au/dft0802/specs/bios21.pdf, we could