Skip to content

Commit

Permalink
crypto: UML build fixes
Browse files Browse the repository at this point in the history
CRYPTO_GHASH_CLMUL_NI_INTEL and CRYPTO_AES_NI_INTEL cannot be used
on UML.
Commit 3e02e5c and 54b6a1b enabled them by accident.

Signed-off-by: Richard Weinberger <[email protected]>
Signed-off-by: Herbert Xu <[email protected]>
  • Loading branch information
richardweinberger authored and herbertx committed Jun 29, 2011
1 parent 5165e5b commit 8af0086
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crypto/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -458,7 +458,7 @@ config CRYPTO_WP512

config CRYPTO_GHASH_CLMUL_NI_INTEL
tristate "GHASH digest algorithm (CLMUL-NI accelerated)"
depends on (X86 || UML_X86) && 64BIT
depends on X86 && 64BIT
select CRYPTO_SHASH
select CRYPTO_CRYPTD
help
Expand Down Expand Up @@ -533,7 +533,7 @@ config CRYPTO_AES_X86_64

config CRYPTO_AES_NI_INTEL
tristate "AES cipher algorithms (AES-NI)"
depends on (X86 || UML_X86)
depends on X86
select CRYPTO_AES_X86_64 if 64BIT
select CRYPTO_AES_586 if !64BIT
select CRYPTO_CRYPTD
Expand Down

0 comments on commit 8af0086

Please sign in to comment.