projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d5dc392
)
[CRYPTO] aes-x86-32: Remove unused return code
author
Sebastian Siewior
<
[email protected]
>
Tue, 11 Mar 2008 13:29:47 +0000
(21:29 +0800)
committer
Herbert Xu
<
[email protected]
>
Mon, 21 Apr 2008 02:19:21 +0000
(10:19 +0800)
The return parameter isn't used remove it.
Signed-off-by: Sebastian Siewior <
[email protected]
>
Signed-off-by: Herbert Xu <
[email protected]
>
arch/x86/crypto/aes-i586-asm_32.S
patch
|
blob
|
history
diff --git
a/arch/x86/crypto/aes-i586-asm_32.S
b/arch/x86/crypto/aes-i586-asm_32.S
index 1093bede3e0a75378c6dde1bfa9a9f2fafce4cff..e41b147f45093009d9dbda30c314d1d4d748d3a5 100644
(file)
--- 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:
pop %ebx
mov %r0,(%ebp)
pop %ebp
- mov $1,%eax
ret
// AES (Rijndael) Decryption Subroutine
@@
-365,6
+364,4
@@
aes_dec_blk:
pop %ebx
mov %r0,(%ebp)
pop %ebp
- mov $1,%eax
ret
-