diff options
author | Sebastian Siewior <sebastian@breakpoint.cc> | 2008-03-11 09:29:47 -0400 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2008-04-20 22:19:21 -0400 |
commit | 744b5a28109e6a107c24a1426ee22f92b17995e9 (patch) | |
tree | 619ebb94279bd34fb72e10ff77449b11a55511f4 /arch | |
parent | d5dc392742a9818e2766a63f3533980543e18060 (diff) |
[CRYPTO] aes-x86-32: Remove unused return code
The return parameter isn't used remove it.
Signed-off-by: Sebastian Siewior <sebastian@breakpoint.cc>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/x86/crypto/aes-i586-asm_32.S | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/arch/x86/crypto/aes-i586-asm_32.S b/arch/x86/crypto/aes-i586-asm_32.S index 1093bede3e0a..e41b147f4509 100644 --- a/arch/x86/crypto/aes-i586-asm_32.S +++ b/arch/x86/crypto/aes-i586-asm_32.S | |||
@@ -289,7 +289,6 @@ aes_enc_blk: | |||
289 | pop %ebx | 289 | pop %ebx |
290 | mov %r0,(%ebp) | 290 | mov %r0,(%ebp) |
291 | pop %ebp | 291 | pop %ebp |
292 | mov $1,%eax | ||
293 | ret | 292 | ret |
294 | 293 | ||
295 | // AES (Rijndael) Decryption Subroutine | 294 | // AES (Rijndael) Decryption Subroutine |
@@ -365,6 +364,4 @@ aes_dec_blk: | |||
365 | pop %ebx | 364 | pop %ebx |
366 | mov %r0,(%ebp) | 365 | mov %r0,(%ebp) |
367 | pop %ebp | 366 | pop %ebp |
368 | mov $1,%eax | ||
369 | ret | 367 | ret |
370 | |||