diff options
| -rw-r--r-- | arch/x86/include/asm/ce4100.h | 6 | ||||
| -rw-r--r-- | arch/x86/pci/ce4100.c | 7 | ||||
| -rw-r--r-- | arch/x86/platform/ce4100/ce4100.c | 2 |
3 files changed, 12 insertions, 3 deletions
diff --git a/arch/x86/include/asm/ce4100.h b/arch/x86/include/asm/ce4100.h new file mode 100644 index 000000000000..e656ad8c0a2e --- /dev/null +++ b/arch/x86/include/asm/ce4100.h | |||
| @@ -0,0 +1,6 @@ | |||
| 1 | #ifndef _ASM_CE4100_H_ | ||
| 2 | #define _ASM_CE4100_H_ | ||
| 3 | |||
| 4 | int ce4100_pci_init(void); | ||
| 5 | |||
| 6 | #endif | ||
diff --git a/arch/x86/pci/ce4100.c b/arch/x86/pci/ce4100.c index 85b68ef5e809..9260b3eb18d4 100644 --- a/arch/x86/pci/ce4100.c +++ b/arch/x86/pci/ce4100.c | |||
| @@ -34,6 +34,7 @@ | |||
| 34 | #include <linux/pci.h> | 34 | #include <linux/pci.h> |
| 35 | #include <linux/init.h> | 35 | #include <linux/init.h> |
| 36 | 36 | ||
| 37 | #include <asm/ce4100.h> | ||
| 37 | #include <asm/pci_x86.h> | 38 | #include <asm/pci_x86.h> |
| 38 | 39 | ||
| 39 | struct sim_reg { | 40 | struct sim_reg { |
| @@ -306,10 +307,10 @@ struct pci_raw_ops ce4100_pci_conf = { | |||
| 306 | .write = ce4100_conf_write, | 307 | .write = ce4100_conf_write, |
| 307 | }; | 308 | }; |
| 308 | 309 | ||
| 309 | static int __init ce4100_pci_init(void) | 310 | int __init ce4100_pci_init(void) |
| 310 | { | 311 | { |
| 311 | init_sim_regs(); | 312 | init_sim_regs(); |
| 312 | raw_pci_ops = &ce4100_pci_conf; | 313 | raw_pci_ops = &ce4100_pci_conf; |
| 313 | return 0; | 314 | /* Indicate caller that it should invoke pci_legacy_init() */ |
| 315 | return 1; | ||
| 314 | } | 316 | } |
| 315 | subsys_initcall(ce4100_pci_init); | ||
diff --git a/arch/x86/platform/ce4100/ce4100.c b/arch/x86/platform/ce4100/ce4100.c index d2c0d51a7178..cd6f184c3b3f 100644 --- a/arch/x86/platform/ce4100/ce4100.c +++ b/arch/x86/platform/ce4100/ce4100.c | |||
| @@ -15,6 +15,7 @@ | |||
| 15 | #include <linux/serial_reg.h> | 15 | #include <linux/serial_reg.h> |
| 16 | #include <linux/serial_8250.h> | 16 | #include <linux/serial_8250.h> |
| 17 | 17 | ||
| 18 | #include <asm/ce4100.h> | ||
| 18 | #include <asm/setup.h> | 19 | #include <asm/setup.h> |
| 19 | #include <asm/io.h> | 20 | #include <asm/io.h> |
| 20 | 21 | ||
| @@ -129,4 +130,5 @@ void __init x86_ce4100_early_setup(void) | |||
| 129 | x86_init.resources.probe_roms = x86_init_noop; | 130 | x86_init.resources.probe_roms = x86_init_noop; |
| 130 | x86_init.mpparse.get_smp_config = x86_init_uint_noop; | 131 | x86_init.mpparse.get_smp_config = x86_init_uint_noop; |
| 131 | x86_init.mpparse.find_smp_config = sdv_find_smp_config; | 132 | x86_init.mpparse.find_smp_config = sdv_find_smp_config; |
| 133 | x86_init.pci.init = ce4100_pci_init; | ||
| 132 | } | 134 | } |
