aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/include/asm/x86_init.h
diff options
context:
space:
mode:
authorThomas Gleixner <tglx@linutronix.de>2024-02-13 22:05:02 +0100
committerThomas Gleixner <tglx@linutronix.de>2024-02-15 22:07:40 +0100
commite061c7ae0830ff320d77566849a5cc30decfa602 (patch)
tree46f38423cfe096b51b020f28da1d3d5aa9675df3 /arch/x86/include/asm/x86_init.h
parentx86/apic: Remove check_apicid_used() and ioapic_phys_id_map() (diff)
downloadlinux-e061c7ae0830ff320d77566849a5cc30decfa602.tar.gz
linux-e061c7ae0830ff320d77566849a5cc30decfa602.zip
x86/mpparse: Rename default_find_smp_config()
MPTABLE is no longer the default SMP configuration mechanism. Rename it to mpparse_find_mptable() because that's what it does. Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Tested-by: Michael Kelley <mhklinux@outlook.com> Tested-by: Sohil Mehta <sohil.mehta@intel.com> Link: https://lore.kernel.org/r/20240212154639.306287711@linutronix.de
Diffstat (limited to 'arch/x86/include/asm/x86_init.h')
-rw-r--r--arch/x86/include/asm/x86_init.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/x86/include/asm/x86_init.h b/arch/x86/include/asm/x86_init.h
index c878616a18b8..4ae77642011f 100644
--- a/arch/x86/include/asm/x86_init.h
+++ b/arch/x86/include/asm/x86_init.h
@@ -15,12 +15,12 @@ struct irq_domain;
/**
* struct x86_init_mpparse - platform specific mpparse ops
* @setup_ioapic_ids: platform specific ioapic id override
- * @find_smp_config: find the smp configuration
+ * @find_mptable: Find MPTABLE early to reserve the memory region
* @get_smp_config: get the smp configuration
*/
struct x86_init_mpparse {
void (*setup_ioapic_ids)(void);
- void (*find_smp_config)(void);
+ void (*find_mptable)(void);
void (*get_smp_config)(unsigned int early);
};