crypto: Make hifn_795x build depend on !ARCH_DMA_ADDR_T_64BIT
hifn_795x works only on 32 bit, remove the detection while loading the module and catch non-32 bit systems at build time. Signed-off-by: Richard Weinberger <richard@nod.at> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
This commit is contained in:
parent
906b2c9f2d
commit
75b766258e
|
@ -200,6 +200,7 @@ config CRYPTO_DEV_HIFN_795X
|
||||||
select CRYPTO_BLKCIPHER
|
select CRYPTO_BLKCIPHER
|
||||||
select HW_RANDOM if CRYPTO_DEV_HIFN_795X_RNG
|
select HW_RANDOM if CRYPTO_DEV_HIFN_795X_RNG
|
||||||
depends on PCI
|
depends on PCI
|
||||||
|
depends on !ARCH_DMA_ADDR_T_64BIT
|
||||||
help
|
help
|
||||||
This option allows you to have support for HIFN 795x crypto adapters.
|
This option allows you to have support for HIFN 795x crypto adapters.
|
||||||
|
|
||||||
|
|
|
@ -2744,10 +2744,8 @@ static int __init hifn_init(void)
|
||||||
unsigned int freq;
|
unsigned int freq;
|
||||||
int err;
|
int err;
|
||||||
|
|
||||||
if (sizeof(dma_addr_t) > 4) {
|
/* HIFN supports only 32-bit addresses */
|
||||||
printk(KERN_INFO "HIFN supports only 32-bit addresses.\n");
|
BUILD_BUG_ON(sizeof(dma_addr_t) != 4);
|
||||||
return -EINVAL;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (strncmp(hifn_pll_ref, "ext", 3) &&
|
if (strncmp(hifn_pll_ref, "ext", 3) &&
|
||||||
strncmp(hifn_pll_ref, "pci", 3)) {
|
strncmp(hifn_pll_ref, "pci", 3)) {
|
||||||
|
|
Loading…
Reference in New Issue