diff options
Diffstat (limited to 'arch/sparc/lib/NG4copy_to_user.S')
-rw-r--r-- | arch/sparc/lib/NG4copy_to_user.S | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/arch/sparc/lib/NG4copy_to_user.S b/arch/sparc/lib/NG4copy_to_user.S index be0bf4590df8..6b0276ffc858 100644 --- a/arch/sparc/lib/NG4copy_to_user.S +++ b/arch/sparc/lib/NG4copy_to_user.S | |||
@@ -3,19 +3,19 @@ | |||
3 | * Copyright (C) 2012 David S. Miller (davem@davemloft.net) | 3 | * Copyright (C) 2012 David S. Miller (davem@davemloft.net) |
4 | */ | 4 | */ |
5 | 5 | ||
6 | #define EX_ST(x) \ | 6 | #define EX_ST(x,y) \ |
7 | 98: x; \ | 7 | 98: x; \ |
8 | .section __ex_table,"a";\ | 8 | .section __ex_table,"a";\ |
9 | .align 4; \ | 9 | .align 4; \ |
10 | .word 98b, __retl_one_asi;\ | 10 | .word 98b, y; \ |
11 | .text; \ | 11 | .text; \ |
12 | .align 4; | 12 | .align 4; |
13 | 13 | ||
14 | #define EX_ST_FP(x) \ | 14 | #define EX_ST_FP(x,y) \ |
15 | 98: x; \ | 15 | 98: x; \ |
16 | .section __ex_table,"a";\ | 16 | .section __ex_table,"a";\ |
17 | .align 4; \ | 17 | .align 4; \ |
18 | .word 98b, __retl_one_asi_fp;\ | 18 | .word 98b, y##_fp; \ |
19 | .text; \ | 19 | .text; \ |
20 | .align 4; | 20 | .align 4; |
21 | 21 | ||