diff options
author | David S. Miller <davem@davemloft.net> | 2012-08-31 12:11:51 -0700 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2012-08-31 12:11:51 -0700 |
commit | 7cff82f5f42a938a1b633e121a41d29c81de18bb (patch) | |
tree | 80b07a1886e7f4b8caf547e9963245ca4ce75f1b /arch/sparc/crypto/sha512_asm.S | |
parent | 4e71bb49f256e4efc94a9fdaaa430d906cd88e6b (diff) | |
download | talos-op-linux-7cff82f5f42a938a1b633e121a41d29c81de18bb.tar.gz talos-op-linux-7cff82f5f42a938a1b633e121a41d29c81de18bb.zip |
sparc64: Avoid code duplication in crypto assembler.
Put the opcode macros in a common header
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'arch/sparc/crypto/sha512_asm.S')
-rw-r--r-- | arch/sparc/crypto/sha512_asm.S | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/arch/sparc/crypto/sha512_asm.S b/arch/sparc/crypto/sha512_asm.S index 650ba5742f0e..54bfba713c0e 100644 --- a/arch/sparc/crypto/sha512_asm.S +++ b/arch/sparc/crypto/sha512_asm.S @@ -1,6 +1,8 @@ #include <linux/linkage.h> #include <asm/visasm.h> +#include "opcodes.h" + ENTRY(sha512_sparc64_transform) /* %o0 = digest, %o1 = data, %o2 = rounds */ VISEntry @@ -33,8 +35,7 @@ ENTRY(sha512_sparc64_transform) ldd [%o1 + 0x70], %f44 ldd [%o1 + 0x78], %f46 - /* sha512 */ - .word 0x81b02860 + SHA512 subcc %o2, 1, %o2 bne,pt %xcc, 1b @@ -90,8 +91,7 @@ ENTRY(sha512_sparc64_transform) faligndata %f46, %f48, %f44 faligndata %f48, %f50, %f46 - /* sha512 */ - .word 0x81b02860 + SHA512 subcc %o2, 1, %o2 fsrc2 %f50, %f18 |