diff options
author | Thomas Gleixner <tglx@linutronix.de> | 2009-08-20 06:34:47 -0400 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2009-08-27 11:12:53 -0400 |
commit | 90e1c6969d8711edb888a00ec54c74370f125c8f (patch) | |
tree | ce096ac8adec548d968a997411291213cfd511d6 /arch/x86/include/asm/x86_init.h | |
parent | 52fdb5684660f9fd7129f7bbbe279a02893bacb8 (diff) |
x86: Move oem_bus_info to x86_init_ops
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'arch/x86/include/asm/x86_init.h')
-rw-r--r-- | arch/x86/include/asm/x86_init.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/x86/include/asm/x86_init.h b/arch/x86/include/asm/x86_init.h index 404e2d2b06d3..2833a873a903 100644 --- a/arch/x86/include/asm/x86_init.h +++ b/arch/x86/include/asm/x86_init.h | |||
@@ -12,6 +12,7 @@ struct mpc_table; | |||
12 | * @mpc_apic_id: platform specific mpc apic id assignment | 12 | * @mpc_apic_id: platform specific mpc apic id assignment |
13 | * @smp_read_mpc_oem: platform specific oem mpc table setup | 13 | * @smp_read_mpc_oem: platform specific oem mpc table setup |
14 | * @mpc_oem_pci_bus: platform specific pci bus setup (default NULL) | 14 | * @mpc_oem_pci_bus: platform specific pci bus setup (default NULL) |
15 | * @mpc_oem_bus_info: platform specific mpc bus info | ||
15 | */ | 16 | */ |
16 | struct x86_init_mpparse { | 17 | struct x86_init_mpparse { |
17 | void (*mpc_record)(unsigned int mode); | 18 | void (*mpc_record)(unsigned int mode); |
@@ -19,6 +20,7 @@ struct x86_init_mpparse { | |||
19 | int (*mpc_apic_id)(struct mpc_cpu *m); | 20 | int (*mpc_apic_id)(struct mpc_cpu *m); |
20 | void (*smp_read_mpc_oem)(struct mpc_table *mpc); | 21 | void (*smp_read_mpc_oem)(struct mpc_table *mpc); |
21 | void (*mpc_oem_pci_bus)(struct mpc_bus *m); | 22 | void (*mpc_oem_pci_bus)(struct mpc_bus *m); |
23 | void (*mpc_oem_bus_info)(struct mpc_bus *m, char *name); | ||
22 | }; | 24 | }; |
23 | 25 | ||
24 | /** | 26 | /** |