mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 07:34:31 +00:00
x86: fix a typo in function name
Rename 'find_cpu_by_apid_id' to 'find_cpu_by_apic_id'. This should be a typo. Signed-off-by: Miao Yan <yanmiaobest@gmail.com> Reviewed-by: Simon Glass <sjg@chromium.org> Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
This commit is contained in:
parent
5a694056fe
commit
24fb49073e
1 changed files with 3 additions and 3 deletions
|
@ -104,7 +104,7 @@ static void ap_do_flight_plan(struct udevice *cpu)
|
|||
}
|
||||
}
|
||||
|
||||
static int find_cpu_by_apid_id(int apic_id, struct udevice **devp)
|
||||
static int find_cpu_by_apic_id(int apic_id, struct udevice **devp)
|
||||
{
|
||||
struct udevice *dev;
|
||||
|
||||
|
@ -137,7 +137,7 @@ static void ap_init(unsigned int cpu_index)
|
|||
enable_lapic();
|
||||
|
||||
apic_id = lapicid();
|
||||
ret = find_cpu_by_apid_id(apic_id, &dev);
|
||||
ret = find_cpu_by_apic_id(apic_id, &dev);
|
||||
if (ret) {
|
||||
debug("Unknown CPU apic_id %x\n", apic_id);
|
||||
goto done;
|
||||
|
@ -432,7 +432,7 @@ static int init_bsp(struct udevice **devp)
|
|||
lapic_setup();
|
||||
|
||||
apic_id = lapicid();
|
||||
ret = find_cpu_by_apid_id(apic_id, devp);
|
||||
ret = find_cpu_by_apic_id(apic_id, devp);
|
||||
if (ret) {
|
||||
printf("Cannot find boot CPU, APIC ID %d\n", apic_id);
|
||||
return ret;
|
||||
|
|
Loading…
Reference in a new issue