aboutsummaryrefslogtreecommitdiff
path: root/src/arch
diff options
context:
space:
mode:
authorStefan Reinauer <reinauer@chromium.org>2013-05-06 16:49:56 -0700
committerRonald G. Minnich <rminnich@gmail.com>2013-05-08 18:23:33 +0200
commit2a3c10677f354f660a759d47a3b26b1d8818e76c (patch)
tree045019dbd2c2eefeb677b7ea7440ef487b091d84 /src/arch
parent758076cceb450da4848a8ce944fa679d7403147c (diff)
hardwaremain: drop boot_complete parameter
it has been unused since 9 years or so, hence drop it. Change-Id: I0706feb7b3f2ada8ecb92176a94f6a8df53eaaa1 Signed-off-by: Stefan Reinauer <reinauer@google.com> Reviewed-on: http://review.coreboot.org/3212 Reviewed-by: Ronald G. Minnich <rminnich@gmail.com> Tested-by: build bot (Jenkins)
Diffstat (limited to 'src/arch')
-rw-r--r--src/arch/x86/lib/c_start.S9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/arch/x86/lib/c_start.S b/src/arch/x86/lib/c_start.S
index 32af0ccdf9..99a4d92d4b 100644
--- a/src/arch/x86/lib/c_start.S
+++ b/src/arch/x86/lib/c_start.S
@@ -49,12 +49,6 @@ _start:
pushl $0
pushl $0
- /* push the boot_complete flag */
- pushl %ebp
-
- /* Save the stack location */
- movl %esp, %ebp
-
/* Initialize the Interrupt Descriptor table */
leal _idt, %edi
leal vec0, %ebx
@@ -80,9 +74,6 @@ _start:
*/
post_code(POST_PRE_HARDWAREMAIN) /* post fe */
- /* Restore the stack location */
- movl %ebp, %esp
-
#if CONFIG_GDB_WAIT
call gdb_stub_breakpoint
#endif