fix some more warnings

Signed-off-by: Stefan Reinauer <stepan@coresystems.de>
Acked-by: Stefan Reinauer <stepan@coresystems.de>



git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5658 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
Stefan Reinauer
2010-07-07 21:59:06 +00:00
committed by Stefan Reinauer
parent 42da0e6da6
commit 5e33e82708
16 changed files with 67 additions and 52 deletions

View File

@ -244,7 +244,7 @@ static void wait_ap_started(u32 ap_apicid, void *gp)
}
}
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: ");

View 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: ");