diff options
author | Dan Streetman <ddstreet@ieee.org> | 2015-05-07 19:49:17 +0200 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2015-05-11 09:06:46 +0200 |
commit | 7011a122383e36dab594406720fa1d089e0be8f9 (patch) | |
tree | cd69055e54a29a9628331d8594545e50878352f3 /drivers/crypto/nx/Makefile | |
parent | crypto: nx - rename nx-842.c to nx-842-pseries.c (diff) | |
download | linux-7011a122383e36dab594406720fa1d089e0be8f9.tar.xz linux-7011a122383e36dab594406720fa1d089e0be8f9.zip |
crypto: nx - add NX-842 platform frontend driver
Add NX-842 frontend that allows using either the pSeries platform or
PowerNV platform driver (to be added by later patch) for the NX-842
hardware. Update the MAINTAINERS file to include the new filenames.
Update Kconfig files to clarify titles and descriptions, and correct
dependencies.
Signed-off-by: Dan Streetman <ddstreet@ieee.org>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'drivers/crypto/nx/Makefile')
-rw-r--r-- | drivers/crypto/nx/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/crypto/nx/Makefile b/drivers/crypto/nx/Makefile index 8669ffa8dc5c..5d9f4bc15209 100644 --- a/drivers/crypto/nx/Makefile +++ b/drivers/crypto/nx/Makefile @@ -11,4 +11,6 @@ nx-crypto-objs := nx.o \ nx-sha512.o obj-$(CONFIG_CRYPTO_DEV_NX_COMPRESS) += nx-compress.o -nx-compress-objs := nx-842-pseries.o +obj-$(CONFIG_CRYPTO_DEV_NX_COMPRESS_PSERIES) += nx-compress-pseries.o +nx-compress-objs := nx-842.o +nx-compress-pseries-objs := nx-842-pseries.o |