
This change fixes printk arguments in mm-drivers which is found with additional compilation flags and add compile flags too. Change-Id: Ic83f044467dca6d391221182096b9c50b7da36de Signed-off-by: Nilaan Gunabalachandran <quic_ngunabal@quicinc.com>
17 行
584 B
Makefile
17 行
584 B
Makefile
# SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
KDIR := $(TOP)/kernel_platform/msm-kernel
|
|
LINUXINCLUDE += -I$(SYNC_FENCE_ROOT)sync_fence/include/
|
|
include $(SYNC_FENCE_ROOT)/config/kalamammdrivers.conf
|
|
LINUXINCLUDE += -include $(SYNC_FENCE_ROOT)/config/kalamammdriversconf.h
|
|
|
|
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
|
|
EXTRA_CFLAGS += -Wformat-extra-args -Wstrict-prototypes -Wformat-insufficient-args \
|
|
-Wformat-invalid-specifier -Wformat-zero-length -Wnonnull
|