Reverse the order of the first two arguments to _sparc64_enter_uts().

The first argument is the UTS function, the second argument is the
first argument to the UTS function.  Who's on first.
This commit is contained in:
Daniel Eischen 2003-10-09 20:52:17 +00:00
parent 54b2f6e334
commit 1f2215bcc4
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=120956
2 changed files with 4 additions and 4 deletions

View File

@ -82,6 +82,6 @@ ENTRY(_sparc64_enter_uts)
flushw
add %i2, %i3, %i2
sub %i2, SPOFF + CCFSZ, %sp
jmpl %i1, %g0
mov %i0, %o0
jmpl %i0, %g0
mov %i1, %o0
END(_sparc64_enter_uts)

View File

@ -82,6 +82,6 @@ ENTRY(_sparc64_enter_uts)
flushw
add %i2, %i3, %i2
sub %i2, SPOFF + CCFSZ, %sp
jmpl %i1, %g0
mov %i0, %o0
jmpl %i0, %g0
mov %i1, %o0
END(_sparc64_enter_uts)