diff options
| -rw-r--r-- | arch/x86/kernel/cpu/bugs.c | 2 | ||||
| -rw-r--r-- | arch/x86/kernel/mrst.c | 5 | ||||
| -rw-r--r-- | arch/x86/pci/mrst.c | 2 |
3 files changed, 7 insertions, 2 deletions
diff --git a/arch/x86/kernel/cpu/bugs.c b/arch/x86/kernel/cpu/bugs.c index 01a265212395..c39576cb3018 100644 --- a/arch/x86/kernel/cpu/bugs.c +++ b/arch/x86/kernel/cpu/bugs.c | |||
| @@ -86,7 +86,7 @@ static void __init check_fpu(void) | |||
| 86 | 86 | ||
| 87 | static void __init check_hlt(void) | 87 | static void __init check_hlt(void) |
| 88 | { | 88 | { |
| 89 | if (paravirt_enabled()) | 89 | if (boot_cpu_data.x86 >= 5 || paravirt_enabled()) |
| 90 | return; | 90 | return; |
| 91 | 91 | ||
| 92 | printk(KERN_INFO "Checking 'hlt' instruction... "); | 92 | printk(KERN_INFO "Checking 'hlt' instruction... "); |
diff --git a/arch/x86/kernel/mrst.c b/arch/x86/kernel/mrst.c index 0aad8670858e..e796448f0eb5 100644 --- a/arch/x86/kernel/mrst.c +++ b/arch/x86/kernel/mrst.c | |||
| @@ -237,4 +237,9 @@ void __init x86_mrst_early_setup(void) | |||
| 237 | x86_init.pci.fixup_irqs = x86_init_noop; | 237 | x86_init.pci.fixup_irqs = x86_init_noop; |
| 238 | 238 | ||
| 239 | legacy_pic = &null_legacy_pic; | 239 | legacy_pic = &null_legacy_pic; |
| 240 | |||
| 241 | /* Avoid searching for BIOS MP tables */ | ||
| 242 | x86_init.mpparse.find_smp_config = x86_init_noop; | ||
| 243 | x86_init.mpparse.get_smp_config = x86_init_uint_noop; | ||
| 244 | |||
| 240 | } | 245 | } |
diff --git a/arch/x86/pci/mrst.c b/arch/x86/pci/mrst.c index 1cdc02cf8fa4..7ef3a2735df3 100644 --- a/arch/x86/pci/mrst.c +++ b/arch/x86/pci/mrst.c | |||
| @@ -109,7 +109,7 @@ static int pci_device_update_fixed(struct pci_bus *bus, unsigned int devfn, | |||
| 109 | decode++; | 109 | decode++; |
| 110 | decode = ~(decode - 1); | 110 | decode = ~(decode - 1); |
| 111 | } else { | 111 | } else { |
| 112 | decode = ~0; | 112 | decode = 0; |
| 113 | } | 113 | } |
| 114 | 114 | ||
| 115 | /* | 115 | /* |
