aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/include/asm/x86_init.h
diff options
context:
space:
mode:
Diffstat (limited to 'arch/x86/include/asm/x86_init.h')
-rw-r--r--arch/x86/include/asm/x86_init.h2
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 */
16struct x86_init_mpparse { 17struct 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/**