diff options
author | Thomas Gleixner <tglx@linutronix.de> | 2009-08-29 08:54:20 -0400 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2009-08-31 05:09:40 -0400 |
commit | 3f4110a48a749a1aa1c54fb807afb3f32f49711c (patch) | |
tree | 5c0cab75bbb0868b59ee9a5b9f76fb2f5d325211 /arch/x86/include/asm/setup.h | |
parent | 162bc7ab01a00eba1c5d614e64a51e1268ee3f96 (diff) |
x86: Add Moorestown early detection
Moorestown MID devices need to be detected early in the boot process
to setup and do not call x86_default_early_setup as there is no EBDA
region to reserve.
[ Copied the minimal code from Jacobs latest MRST series ]
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Cc: Jacob Pan <jacob.jun.pan@intel.com>
Diffstat (limited to 'arch/x86/include/asm/setup.h')
-rw-r--r-- | arch/x86/include/asm/setup.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/arch/x86/include/asm/setup.h b/arch/x86/include/asm/setup.h index 861e1fe2303b..18e496c98ff0 100644 --- a/arch/x86/include/asm/setup.h +++ b/arch/x86/include/asm/setup.h | |||
@@ -49,6 +49,12 @@ extern void reserve_standard_io_resources(void); | |||
49 | extern void i386_reserve_resources(void); | 49 | extern void i386_reserve_resources(void); |
50 | extern void setup_default_timer_irq(void); | 50 | extern void setup_default_timer_irq(void); |
51 | 51 | ||
52 | #ifdef CONFIG_X86_MRST | ||
53 | extern void x86_mrst_early_setup(void); | ||
54 | #else | ||
55 | static inline void x86_mrst_early_setup(void) { } | ||
56 | #endif | ||
57 | |||
52 | #ifndef _SETUP | 58 | #ifndef _SETUP |
53 | 59 | ||
54 | /* | 60 | /* |