aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/kernel/setup.c
diff options
context:
space:
mode:
Diffstat (limited to 'arch/x86/kernel/setup.c')
-rw-r--r--arch/x86/kernel/setup.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/x86/kernel/setup.c b/arch/x86/kernel/setup.c
index 18182d19b71b..00f6c1472b85 100644
--- a/arch/x86/kernel/setup.c
+++ b/arch/x86/kernel/setup.c
@@ -612,6 +612,7 @@ static unsigned reserve_low = CONFIG_X86_RESERVE_LOW << 10;
612 612
613static bool __init snb_gfx_workaround_needed(void) 613static bool __init snb_gfx_workaround_needed(void)
614{ 614{
615#ifdef CONFIG_PCI
615 int i; 616 int i;
616 u16 vendor, devid; 617 u16 vendor, devid;
617 static const __initconst u16 snb_ids[] = { 618 static const __initconst u16 snb_ids[] = {
@@ -636,6 +637,7 @@ static bool __init snb_gfx_workaround_needed(void)
636 for (i = 0; i < ARRAY_SIZE(snb_ids); i++) 637 for (i = 0; i < ARRAY_SIZE(snb_ids); i++)
637 if (devid == snb_ids[i]) 638 if (devid == snb_ids[i])
638 return true; 639 return true;
640#endif
639 641
640 return false; 642 return false;
641} 643}