mmc: core: Fix HS switch failure in mmc_select_hs400
[firefly-linux-kernel-4.4.55.git] / security / optee_linuxdriver / core / Makefile
1 CFG_TEE_CORE_CORE_TARGET := armv7
2
3 #########################################################################
4 # Set Internal Variables                                                #
5 # May be modified to match your setup                                   #
6 #########################################################################
7 CFG_TEE_DRV_DEBUGFS?=0
8 CFG_TEE_CORE_LOG_LEVEL?=2
9 CFG_TEE_TA_LOG_LEVEL?=2
10
11 M ?= security/optee_linuxdriver
12
13 ccflags-y+=-Werror
14 ccflags-y+=-I$(M)/include/linux
15 ccflags-y+=-I$(M)/include
16
17 ccflags-y+=-DCFG_TEE_DRV_DEBUGFS=${CFG_TEE_DRV_DEBUGFS}
18 ccflags-y+=-DCFG_TEE_CORE_LOG_LEVEL=${CFG_TEE_CORE_LOG_LEVEL}
19 ccflags-y+=-DCFG_TEE_TA_LOG_LEVEL=${CFG_TEE_TA_LOG_LEVEL}
20
21 obj-y += optee.o
22
23 optee-objs:=   \
24                 tee_core.o  \
25                 tee_context.o  \
26                 tee_session.o  \
27                 tee_shm.o  \
28                 tee_supp_com.o  \
29                 tee_sysfs.o \
30                 tee_debugfs.o \
31                 tee_kernel_api.o \
32                 tee_mutex_wait.o \
33                 tee_wait_queue.o \
34
35