mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-28 13:34:38 +08:00
174d66d472
The last commit merged nx-842.c's code into nx-842-crypto.c. It did not rename nx-842-crypto.c to nx-842.c, in order to let the patch more clearly show what was merged. This just renames nx-842-crypto.c to nx-842.c, with no changes to its code. Signed-off-by: Dan Streetman <ddstreet@ieee.org> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
20 lines
628 B
Makefile
20 lines
628 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 nx-compress-platform.o
|
|
obj-$(CONFIG_CRYPTO_DEV_NX_COMPRESS_PSERIES) += nx-compress-pseries.o
|
|
obj-$(CONFIG_CRYPTO_DEV_NX_COMPRESS_POWERNV) += nx-compress-powernv.o
|
|
nx-compress-objs := nx-842.o
|
|
nx-compress-platform-objs := nx-842-platform.o
|
|
nx-compress-pseries-objs := nx-842-pseries.o
|
|
nx-compress-powernv-objs := nx-842-powernv.o
|