diff options
author | Tom 'spot' Callaway <tcallawa@redhat.com> | 2005-04-24 23:46:00 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2005-04-24 23:46:00 -0400 |
commit | 205a7edad99d68d57dfcbf9bdda1a6fb7c33169e (patch) | |
tree | 168822672277e2bc077a907a9c2b7846bd5870c5 /include/asm-sparc | |
parent | 962bd5604bf8a4d31d9204e7daf260ea93084bc0 (diff) |
[SPARC]: Fix mxcc warning
Peter Jones uncovered this one while we were debugging the framebuffer
issues. There are some references to -1 in the mxcc asm code, which
should be 0xffffffff.
This patch gets rid of the -1s.
Signed-off-by: Tom 'spot' Callaway <tcallawa@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/asm-sparc')
-rw-r--r-- | include/asm-sparc/mxcc.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/asm-sparc/mxcc.h b/include/asm-sparc/mxcc.h index efe4e843122d..60ef9d6fe7bc 100644 --- a/include/asm-sparc/mxcc.h +++ b/include/asm-sparc/mxcc.h | |||
@@ -115,8 +115,8 @@ extern __inline__ unsigned long mxcc_get_creg(void) | |||
115 | { | 115 | { |
116 | unsigned long mxcc_control; | 116 | unsigned long mxcc_control; |
117 | 117 | ||
118 | __asm__ __volatile__("set -1, %%g2\n\t" | 118 | __asm__ __volatile__("set 0xffffffff, %%g2\n\t" |
119 | "set -1, %%g3\n\t" | 119 | "set 0xffffffff, %%g3\n\t" |
120 | "stda %%g2, [%1] %2\n\t" | 120 | "stda %%g2, [%1] %2\n\t" |
121 | "lda [%3] %2, %0\n\t" : | 121 | "lda [%3] %2, %0\n\t" : |
122 | "=r" (mxcc_control) : | 122 | "=r" (mxcc_control) : |