From 6e23da2983f83c803cf4abfee542d7f90e8e9eb5 Mon Sep 17 00:00:00 2001 From: Arthur Heymans Date: Sat, 12 Nov 2022 16:51:22 +0100 Subject: cpu/cpu.h: Change the function signature There is no need to pass the CPU index around. Change-Id: Iad8e3cb318e6520ac5877118dbf43597dedb75b9 Signed-off-by: Arthur Heymans Reviewed-on: https://review.coreboot.org/c/coreboot/+/69504 Tested-by: build bot (Jenkins) Reviewed-by: Elyes Haouas --- src/arch/x86/cpu.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/arch/x86') diff --git a/src/arch/x86/cpu.c b/src/arch/x86/cpu.c index face248fc2..a51cadbee3 100644 --- a/src/arch/x86/cpu.c +++ b/src/arch/x86/cpu.c @@ -229,7 +229,7 @@ int cpu_get_apic_id(int logical_cpu) return cpus_default_apic_id[logical_cpu]; } -void cpu_initialize(unsigned int index) +void cpu_initialize(void) { /* Because we busy wait at the printk spinlock. * It is important to keep the number of printed messages @@ -242,7 +242,7 @@ void cpu_initialize(unsigned int index) info = cpu_info(); - printk(BIOS_INFO, "Initializing CPU #%d\n", index); + printk(BIOS_INFO, "Initializing CPU #%zd\n", info->index); cpu = info->cpu; if (!cpu) @@ -284,7 +284,7 @@ void cpu_initialize(unsigned int index) } post_log_clear(); - printk(BIOS_INFO, "CPU #%d initialized\n", index); + printk(BIOS_INFO, "CPU #%zd initialized\n", info->index); } void lb_arch_add_records(struct lb_header *header) -- cgit v1.2.3