diff options
| author | Benjamin Herrenschmidt <benh@kernel.crashing.org> | 2010-08-04 10:26:03 +1000 | 
|---|---|---|
| committer | Benjamin Herrenschmidt <benh@kernel.crashing.org> | 2010-08-04 10:26:03 +1000 | 
| commit | 412a4ac5e9cf7fdeb6af562c25547a9b9da7674f (patch) | |
| tree | a8ce13cbc9c47c99799e5e3e3ad26ba78274ee73 /arch/x86/kernel/mrst.c | |
| parent | e8e5c2155b0035b6e04f29be67f6444bc914005b (diff) | |
| parent | 0c2daaafcdec726e89cbccca61d576de8429c537 (diff) | |
| download | olio-linux-3.10-412a4ac5e9cf7fdeb6af562c25547a9b9da7674f.tar.xz olio-linux-3.10-412a4ac5e9cf7fdeb6af562c25547a9b9da7674f.zip  | |
Merge commit 'gcl/next' into next
Diffstat (limited to 'arch/x86/kernel/mrst.c')
| -rw-r--r-- | arch/x86/kernel/mrst.c | 7 | 
1 files changed, 7 insertions, 0 deletions
diff --git a/arch/x86/kernel/mrst.c b/arch/x86/kernel/mrst.c index e796448f0eb..5915e0b3330 100644 --- a/arch/x86/kernel/mrst.c +++ b/arch/x86/kernel/mrst.c @@ -216,6 +216,12 @@ static void __init mrst_setup_boot_clock(void)  		setup_boot_APIC_clock();  }; +/* MID systems don't have i8042 controller */ +static int mrst_i8042_detect(void) +{ +	return 0; +} +  /*   * Moorestown specific x86_init function overrides and early setup   * calls. @@ -233,6 +239,7 @@ void __init x86_mrst_early_setup(void)  	x86_cpuinit.setup_percpu_clockev = mrst_setup_secondary_clock;  	x86_platform.calibrate_tsc = mrst_calibrate_tsc; +	x86_platform.i8042_detect = mrst_i8042_detect;  	x86_init.pci.init = pci_mrst_init;  	x86_init.pci.fixup_irqs = x86_init_noop;  |