mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-22 20:37:19 +07:00
87fec0102d
The header search path -I. in kernel Makefiles is very suspicious; it allows the compiler to search for headers in the top of $(srctree), where obviously no header file exists. 'git grep BCMDRIVER' has no hit. So, this macro is not referenced. I was able to build this driver without the extra compiler options. Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
14 lines
377 B
Makefile
14 lines
377 B
Makefile
# File: drivers/crypto/bcm/Makefile
|
|
#
|
|
# Makefile for crypto acceleration files for Broadcom SPU driver
|
|
#
|
|
# Uncomment to enable debug tracing in the SPU driver.
|
|
# CFLAGS_util.o := -DDEBUG
|
|
# CFLAGS_cipher.o := -DDEBUG
|
|
# CFLAGS_spu.o := -DDEBUG
|
|
# CFLAGS_spu2.o := -DDEBUG
|
|
|
|
obj-$(CONFIG_CRYPTO_DEV_BCM_SPU) := bcm_crypto_spu.o
|
|
|
|
bcm_crypto_spu-objs := util.o spu.o spu2.o cipher.o
|