Commit e60b2442 authored by Herbert Xu's avatar Herbert Xu

crypto: qat - Fix build problem with O=

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: default avatarHerbert Xu <herbert@gondor.apana.org.au>
parent 6c9e3dcd
ccflags-y := -I$(CURDIR)/drivers/crypto/qat/qat_common
ccflags-y := -I$(src)/../qat_common
obj-$(CONFIG_CRYPTO_DEV_QAT_DH895xCC) += qat_dh895xcc.o
qat_dh895xcc-objs := adf_drv.o \
adf_isr.o \
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment