Skip to content

Commit d89b3e1

Browse files
committed
Merge git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6
Pull crypto fixes from Herbert Xu: "This push fixes a build problem with img-hash under non-standard configurations and a serious regression with sha512_ssse3 which can lead to boot failures" * git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6: crypto: img-hash - CRYPTO_DEV_IMGTEC_HASH should depend on HAS_DMA crypto: x86/sha512_ssse3 - fixup for asm function prototype change
2 parents 78d4256 + 8c98ebd commit d89b3e1

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

arch/x86/crypto/sha512-avx2-asm.S

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ NUM_BLKS = %rdx
7979
c = %rcx
8080
d = %r8
8181
e = %rdx
82-
y3 = %rdi
82+
y3 = %rsi
8383

8484
TBL = %rbp
8585

drivers/crypto/Kconfig

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -446,8 +446,9 @@ config CRYPTO_DEV_VMX
446446
source "drivers/crypto/vmx/Kconfig"
447447

448448
config CRYPTO_DEV_IMGTEC_HASH
449-
depends on MIPS || COMPILE_TEST
450449
tristate "Imagination Technologies hardware hash accelerator"
450+
depends on MIPS || COMPILE_TEST
451+
depends on HAS_DMA
451452
select CRYPTO_ALGAPI
452453
select CRYPTO_MD5
453454
select CRYPTO_SHA1

0 commit comments

Comments
 (0)