Fix oops in previous commit.

This commit is contained in:
Bruce Evans 2006-12-29 15:48:18 +00:00
parent f28e1c8f99
commit 0b194ec872
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=165636

View File

@ -306,7 +306,7 @@ atomic_readandclear_long(volatile u_long *addr)
__asm __volatile(
" xchgl %1,%0 ; "
"# atomic_readandclear_long"
: "+r" (result), /* 0 */
: "+r" (res), /* 0 */
"=m" (*addr) /* 1 */
: "m" (*addr));