Message ID | 20210201134431.699419-1-geert+renesas@glider.be |
---|---|
State | Accepted |
Commit | 42e6f351dcb05fd1f3e4197fc2286de9eb354b30 |
Headers | show |
Series | crypto: marvell - CRYPTO_DEV_OCTEONTX2_CPT should depend on ARCH_THUNDER2 | expand |
On Mon, Feb 01, 2021 at 02:44:31PM +0100, Geert Uytterhoeven wrote: > The Marvell OcteonTX2 CPT physical function PCI device is present only > on OcteonTx2 SoC, and not available as an independent PCIe endpoint. > Hence add a dependency on ARCH_THUNDER2, to prevent asking the user > about this driver when configuring a kernel without OcteonTx2 platform > support. > > Fixes: 5e8ce8334734c5f2 ("crypto: marvell - add Marvell OcteonTX2 CPT PF driver") > Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be> > --- > drivers/crypto/marvell/Kconfig | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) Patch applied. Thanks. -- Email: Herbert Xu <herbert@gondor.apana.org.au> Home Page: http://gondor.apana.org.au/~herbert/ PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt
diff --git a/drivers/crypto/marvell/Kconfig b/drivers/crypto/marvell/Kconfig index 2efbd79180ce4b22..d4c4433c8db8244a 100644 --- a/drivers/crypto/marvell/Kconfig +++ b/drivers/crypto/marvell/Kconfig @@ -38,7 +38,7 @@ config CRYPTO_DEV_OCTEONTX_CPT config CRYPTO_DEV_OCTEONTX2_CPT tristate "Marvell OcteonTX2 CPT driver" - depends on ARM64 || COMPILE_TEST + depends on ARCH_THUNDER2 || COMPILE_TEST depends on PCI_MSI && 64BIT depends on CRYPTO_LIB_AES select OCTEONTX2_MBOX
The Marvell OcteonTX2 CPT physical function PCI device is present only on OcteonTx2 SoC, and not available as an independent PCIe endpoint. Hence add a dependency on ARCH_THUNDER2, to prevent asking the user about this driver when configuring a kernel without OcteonTx2 platform support. Fixes: 5e8ce8334734c5f2 ("crypto: marvell - add Marvell OcteonTX2 CPT PF driver") Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be> --- drivers/crypto/marvell/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)