diff options
author | Tobias Weingartner <weingart@cvs.openbsd.org> | 2007-11-05 21:46:14 +0000 |
---|---|---|
committer | Tobias Weingartner <weingart@cvs.openbsd.org> | 2007-11-05 21:46:14 +0000 |
commit | 5a38cece9a5cac8b439e24d39a034691a80de2af (patch) | |
tree | 0762598214c377349c9d0fd9565bb596d6079771 /sys/arch/i386 | |
parent | d02ac752636e06f2c62d9d4088c896b65cbb7fc6 (diff) |
I screwed the pooch. Fix the stack offsets.
"That's much better." kettenis@
Diffstat (limited to 'sys/arch/i386')
-rw-r--r-- | sys/arch/i386/i386/locore.s | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/arch/i386/i386/locore.s b/sys/arch/i386/i386/locore.s index 85fe1978414..f5ac0cf8bb3 100644 --- a/sys/arch/i386/i386/locore.s +++ b/sys/arch/i386/i386/locore.s @@ -1,4 +1,4 @@ -/* $OpenBSD: locore.s,v 1.119 2007/11/03 03:37:08 weingart Exp $ */ +/* $OpenBSD: locore.s,v 1.120 2007/11/05 21:46:13 weingart Exp $ */ /* $NetBSD: locore.s,v 1.145 1996/05/03 19:41:19 christos Exp $ */ /*- @@ -1857,7 +1857,7 @@ ENTRY(i686_pagezero) #if NACPI > 0 ENTRY(acpi_acquire_global_lock) - movl 8(%esp), %ecx + movl 4(%esp), %ecx 1: movl (%ecx), %eax movl %eax, %edx andl $~1, %edx @@ -1872,7 +1872,7 @@ ENTRY(acpi_acquire_global_lock) ret ENTRY(acpi_release_global_lock) - movl 8(%esp), %ecx + movl 4(%esp), %ecx 1: movl (%ecx), %eax movl %eax, %edx andl $~3, %edx |