diff options
author | Jussi Kivilinna <jussi.kivilinna@mbnet.fi> | 2013-01-19 06:39:41 -0500 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2013-01-19 18:16:51 -0500 |
commit | ac9d55dd42858b127bedb84f4e59789958263d37 (patch) | |
tree | 147b4b3972b4191090349d3d05365e375fb48584 /arch/x86/crypto/sha1_ssse3_asm.S | |
parent | 2dcfd44dee3fd3a63e3e3d3f5cbfd2436d1f98a6 (diff) |
crypto: x86/sha1 - assembler clean-ups: use ENTRY/ENDPROC
Signed-off-by: Jussi Kivilinna <jussi.kivilinna@mbnet.fi>
Acked-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'arch/x86/crypto/sha1_ssse3_asm.S')
-rw-r--r-- | arch/x86/crypto/sha1_ssse3_asm.S | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/arch/x86/crypto/sha1_ssse3_asm.S b/arch/x86/crypto/sha1_ssse3_asm.S index 49d6987a73d9..a4109506a5e8 100644 --- a/arch/x86/crypto/sha1_ssse3_asm.S +++ b/arch/x86/crypto/sha1_ssse3_asm.S | |||
@@ -28,6 +28,8 @@ | |||
28 | * (at your option) any later version. | 28 | * (at your option) any later version. |
29 | */ | 29 | */ |
30 | 30 | ||
31 | #include <linux/linkage.h> | ||
32 | |||
31 | #define CTX %rdi // arg1 | 33 | #define CTX %rdi // arg1 |
32 | #define BUF %rsi // arg2 | 34 | #define BUF %rsi // arg2 |
33 | #define CNT %rdx // arg3 | 35 | #define CNT %rdx // arg3 |
@@ -69,10 +71,8 @@ | |||
69 | * param: function's name | 71 | * param: function's name |
70 | */ | 72 | */ |
71 | .macro SHA1_VECTOR_ASM name | 73 | .macro SHA1_VECTOR_ASM name |
72 | .global \name | 74 | ENTRY(\name) |
73 | .type \name, @function | 75 | |
74 | .align 32 | ||
75 | \name: | ||
76 | push %rbx | 76 | push %rbx |
77 | push %rbp | 77 | push %rbp |
78 | push %r12 | 78 | push %r12 |
@@ -106,7 +106,7 @@ | |||
106 | pop %rbx | 106 | pop %rbx |
107 | ret | 107 | ret |
108 | 108 | ||
109 | .size \name, .-\name | 109 | ENDPROC(\name) |
110 | .endm | 110 | .endm |
111 | 111 | ||
112 | /* | 112 | /* |