mirror of
https://github.com/torvalds/linux.git
synced 2024-11-17 01:22:07 +00:00
7011a12238
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>
17 lines
443 B
Makefile
17 lines
443 B
Makefile
obj-$(CONFIG_CRYPTO_DEV_NX_ENCRYPT) += nx-crypto.o
|
|
nx-crypto-objs := nx.o \
|
|
nx_debugfs.o \
|
|
nx-aes-cbc.o \
|
|
nx-aes-ecb.o \
|
|
nx-aes-gcm.o \
|
|
nx-aes-ccm.o \
|
|
nx-aes-ctr.o \
|
|
nx-aes-xcbc.o \
|
|
nx-sha256.o \
|
|
nx-sha512.o
|
|
|
|
obj-$(CONFIG_CRYPTO_DEV_NX_COMPRESS) += nx-compress.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
|