
This change adds an api to check if a given speculative fence is bound. If fence is not bound, it will wait for the speculative fence ioctl to bind the fence, or else timeout. Change-Id: I9a86d09df410e89137264be47763ae39f06eea2b Signed-off-by: Ingrid Gallardo <quic_ingridg@quicinc.com>
13 rader
311 B
Makefile
13 rader
311 B
Makefile
# SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
KDIR := $(TOP)/kernel_platform/msm-kernel
|
|
LINUXINCLUDE += -I$(SYNC_FENCE_ROOT)sync_fence/include/
|
|
|
|
ifdef CONFIG_QCOM_SPEC_SYNC
|
|
obj-m += sync_fence.o
|
|
|
|
sync_fence-y := src/qcom_sync_file.o
|
|
|
|
CDEFINES += -DBUILD_TIMESTAMP=\"$(shell date -u +'%Y-%m-%dT%H:%M:%SZ')\"
|
|
endif
|