diff options
author | Thomas Gleixner <tglx@linutronix.de> | 2009-08-20 12:34:47 +0200 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2009-08-27 17:12:53 +0200 |
commit | 90e1c6969d8711edb888a00ec54c74370f125c8f (patch) | |
tree | ce096ac8adec548d968a997411291213cfd511d6 /arch/x86/include/asm/x86_init.h | |
parent | 52fdb5684660f9fd7129f7bbbe279a02893bacb8 (diff) | |
download | kernel_samsung_crespo-90e1c6969d8711edb888a00ec54c74370f125c8f.zip kernel_samsung_crespo-90e1c6969d8711edb888a00ec54c74370f125c8f.tar.gz kernel_samsung_crespo-90e1c6969d8711edb888a00ec54c74370f125c8f.tar.bz2 |
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 404e2d2..2833a87 100644 --- a/arch/x86/include/asm/x86_init.h +++ b/arch/x86/include/asm/x86_init.h @@ -12,6 +12,7 @@ struct mpc_table; * @mpc_apic_id: platform specific mpc apic id assignment * @smp_read_mpc_oem: platform specific oem mpc table setup * @mpc_oem_pci_bus: platform specific pci bus setup (default NULL) + * @mpc_oem_bus_info: platform specific mpc bus info */ struct x86_init_mpparse { void (*mpc_record)(unsigned int mode); @@ -19,6 +20,7 @@ struct x86_init_mpparse { int (*mpc_apic_id)(struct mpc_cpu *m); void (*smp_read_mpc_oem)(struct mpc_table *mpc); void (*mpc_oem_pci_bus)(struct mpc_bus *m); + void (*mpc_oem_bus_info)(struct mpc_bus *m, char *name); }; /** |