From: H. Peter Anvin Date: Mon, 14 Jan 2013 04:56:41 +0000 (-0800) Subject: x86/Sandy Bridge: Sandy Bridge workaround depends on CONFIG_PCI X-Git-Tag: v3.7.6~17 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d8525659e782fa14ce8baa2b197d03dac3a7cc90;p=thirdparty%2Fkernel%2Fstable.git x86/Sandy Bridge: Sandy Bridge workaround depends on CONFIG_PCI commit e43b3cec711a61edf047adf6204d542f3a659ef8 upstream. early_pci_allowed() and read_pci_config_16() are only available if CONFIG_PCI is defined. Signed-off-by: H. Peter Anvin Cc: Jesse Barnes Signed-off-by: Abdallah Chatila --- diff --git a/arch/x86/kernel/setup.c b/arch/x86/kernel/setup.c index 0219cf2d6c760..aeacb0e46ea6b 100644 --- a/arch/x86/kernel/setup.c +++ b/arch/x86/kernel/setup.c @@ -616,6 +616,7 @@ static unsigned reserve_low = CONFIG_X86_RESERVE_LOW << 10; static bool __init snb_gfx_workaround_needed(void) { +#ifdef CONFIG_PCI int i; u16 vendor, devid; static const u16 snb_ids[] = { @@ -640,6 +641,7 @@ static bool __init snb_gfx_workaround_needed(void) for (i = 0; i < ARRAY_SIZE(snb_ids); i++) if (devid == snb_ids[i]) return true; +#endif return false; }