x86, mrst: Fill in PCI functions in x86_init layer
[pandora-kernel.git] / arch / x86 / kernel / mrst.c
1 /*
2  * mrst.c: Intel Moorestown platform specific setup code
3  *
4  * (C) Copyright 2008 Intel Corporation
5  * Author: Jacob Pan (jacob.jun.pan@intel.com)
6  *
7  * This program is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU General Public License
9  * as published by the Free Software Foundation; version 2
10  * of the License.
11  */
12 #include <linux/init.h>
13
14 #include <asm/setup.h>
15 #include <asm/mrst.h>
16 #include <asm/io.h>
17 #include <asm/i8259.h>
18
19 /*
20  * Moorestown specific x86_init function overrides and early setup
21  * calls.
22  */
23 void __init x86_mrst_early_setup(void)
24 {
25         x86_init.resources.probe_roms = x86_init_noop;
26         x86_init.resources.reserve_resources = x86_init_noop;
27
28         x86_init.pci.init = pci_mrst_init;
29         x86_init.pci.fixup_irqs = x86_init_noop;
30
31         legacy_pic = &null_legacy_pic;
32 }