From c70b5d2f3a7d6da24dd0f4c136382c93694b36c4 Mon Sep 17 00:00:00 2001 From: Greg Watson Date: Sat, 15 Nov 2003 15:11:55 +0000 Subject: jumping to payload git-svn-id: svn://svn.coreboot.org/coreboot/trunk@1280 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1 --- src/arch/ppc/init/ppc_main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/arch/ppc/init/ppc_main.c b/src/arch/ppc/init/ppc_main.c index 33827f0179..9853758ce4 100644 --- a/src/arch/ppc/init/ppc_main.c +++ b/src/arch/ppc/init/ppc_main.c @@ -10,7 +10,7 @@ extern unsigned _iseg[]; extern unsigned _liseg[]; extern unsigned _eliseg[]; -void (*hardwaremain)(int) = (void (*)(int))_iseg; +void (*payload)(void) = (void (*)(void))_iseg; /* * At this point we're running out of flash with our @@ -40,5 +40,5 @@ void ppc_main(void) *to++ = *from++; } - hardwaremain(0); + payload(); } -- cgit v1.2.3