diff options
author | Arthur Heymans <arthur@aheymans.xyz> | 2022-11-12 16:51:22 +0100 |
---|---|---|
committer | Martin L Roth <gaumless@gmail.com> | 2022-12-10 17:54:53 +0000 |
commit | 6e23da2983f83c803cf4abfee542d7f90e8e9eb5 (patch) | |
tree | 4ed3551c36aa01c0097002c419965e6c3ea4e9e3 /src/arch | |
parent | 2db459edb0936bbaf874f40a96e98cdfc6d5d5ce (diff) |
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 <arthur@aheymans.xyz>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/69504
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Elyes Haouas <ehaouas@noos.fr>
Diffstat (limited to 'src/arch')
-rw-r--r-- | src/arch/x86/cpu.c | 6 |
1 files changed, 3 insertions, 3 deletions
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) |