x86: Move get/find_smp_config to x86_init_ops
[safe/jmp/linux-2.6] / arch / x86 / include / asm / x86_init.h
index 2833a87..e0d4729 100644 (file)
@@ -13,6 +13,8 @@ struct mpc_table;
  * @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
+ * @find_smp_config:           find the smp configuration
+ * @get_smp_config:            get the smp configuration
  */
 struct x86_init_mpparse {
        void (*mpc_record)(unsigned int mode);
@@ -21,6 +23,8 @@ struct x86_init_mpparse {
        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);
+       void (*find_smp_config)(unsigned int reserve);
+       void (*get_smp_config)(unsigned int early);
 };
 
 /**