mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-12 05:24:12 +08:00
e60b244281
qat adds -I to the ccflags. Unfortunately it uses CURDIR which breaks when make is invoked with O=. This patch replaces CURDIR with $(src) which should work with/without O=. Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
9 lines
217 B
Makefile
9 lines
217 B
Makefile
ccflags-y := -I$(src)/../qat_common
|
|
obj-$(CONFIG_CRYPTO_DEV_QAT_DH895xCC) += qat_dh895xcc.o
|
|
qat_dh895xcc-objs := adf_drv.o \
|
|
adf_isr.o \
|
|
adf_dh895xcc_hw_data.o \
|
|
adf_hw_arbiter.o \
|
|
qat_admin.o \
|
|
adf_admin.o
|