fix some more warnings
[coreboot.git] / src / cpu / amd / model_fxx / init_cpus.c
index 3fad4e19e33af8714b9edb12799676ab5ad0753f..23edfa08ae67222224566f994a796deafb175d6a 100644 (file)
@@ -178,12 +178,12 @@ static void wait_ap_started(u32 ap_apicid, void *gp)
        }
 }
 
-static void wait_all_aps_started(u32 bsp_apicid)
+void wait_all_aps_started(u32 bsp_apicid)
 {
        for_each_ap(bsp_apicid, 0, wait_ap_started, (void *)0);
 }
 
-static void wait_all_other_cores_started(u32 bsp_apicid)
+void wait_all_other_cores_started(u32 bsp_apicid)
 {
        // all aps other than core0
        printk(BIOS_DEBUG, "started ap apicid: ");