According to source release repository of AP7350 (MT6735).
http://git.huayusoft.com/tomsu/AP7350_MDK-kernel
https://github.com/alexgoussev/AP7350_MDK-kernel
The common gic controller driver could not adapted to platform mt6735.
Hence a compile option here is needed.
Signed-off-by: Macpaul Lin <macpaul@gmail.com>
11 lines
147 B
Makefile
11 lines
147 B
Makefile
LOCAL_DIR := $(GET_LOCAL_DIR)
|
|
|
|
GLOBAL_INCLUDES += \
|
|
$(LOCAL_DIR)/include
|
|
|
|
ifeq ($(SUB_PLATFORM),mt6797)
|
|
MODULE_DEPS += \
|
|
$(LOCAL_DIR)/gic
|
|
endif
|
|
|