diff options
author | Arnd Bergmann <arnd@arndb.de> | 2017-03-30 16:16:28 +0200 |
---|---|---|
committer | Arnd Bergmann <arnd@arndb.de> | 2017-03-30 16:16:28 +0200 |
commit | 414d06ace9cca3725b6c2072e1951e1e03807f63 (patch) | |
tree | 31e3c2c3da9260d5541e3d8de7045aabcbf66033 /drivers/tee/Makefile | |
parent | 97da3854c526d3a6ee05c849c96e48d21527606c (diff) | |
parent | 14e21cb8f811100a2104e952b8f5bc0326a5e213 (diff) | |
download | linux-414d06ace9cca3725b6c2072e1951e1e03807f63.tar.gz linux-414d06ace9cca3725b6c2072e1951e1e03807f63.tar.bz2 linux-414d06ace9cca3725b6c2072e1951e1e03807f63.zip |
Merge tag 'tee-drv-for-4.12' of git://git.linaro.org:/people/jens.wiklander/linux-tee into next/tee
Pull "generic TEE subsystem for v4.12"
Introduce generic TEE subsystem:
- the TEE subsystem itself
- an OP-TEE driver using the subsystem
- optee bindings
- optee node for hi6220-hikey.dts
* tag 'tee-drv-for-4.12' of git://git.linaro.org:/people/jens.wiklander/linux-tee:
arm64: dt: hikey: Add optee node
Documentation: tee subsystem and op-tee driver
tee: add OP-TEE driver
tee: generic TEE subsystem
dt/bindings: add bindings for optee
Diffstat (limited to 'drivers/tee/Makefile')
-rw-r--r-- | drivers/tee/Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/drivers/tee/Makefile b/drivers/tee/Makefile new file mode 100644 index 000000000000..7a4e4a1ac39c --- /dev/null +++ b/drivers/tee/Makefile @@ -0,0 +1,5 @@ +obj-$(CONFIG_TEE) += tee.o +tee-objs += tee_core.o +tee-objs += tee_shm.o +tee-objs += tee_shm_pool.o +obj-$(CONFIG_OPTEE) += optee/ |