mirror of
https://github.com/followmsi/android_kernel_google_msm.git
synced 2024-11-06 23:17:41 +00:00
289b5e4a9c
This adds tpmd_dev from the tpm-emulator source, so we don't have to compile it externally. It also adds config.h, which unfortunately is not in the source---it's an intermediate compilation result. Signed-off-by: semenzato@chromium.org Review URL: http://codereview.chromium.org/1602016 [move tpmd_dev/ to drivers/char/tpm and modifed Makefile there] Signed-off-by: Tianyi Gou <tgou@codeaurora.org> Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
14 lines
378 B
Makefile
14 lines
378 B
Makefile
#
|
|
# Makefile for the kernel tpm device drivers.
|
|
#
|
|
|
|
obj-$(CONFIG_TCG_TPM) += tpm.o
|
|
ifdef CONFIG_ACPI
|
|
obj-$(CONFIG_TCG_TPM) += tpm_bios.o
|
|
endif
|
|
obj-$(CONFIG_TCG_TIS) += tpm_tis.o
|
|
obj-$(CONFIG_TCG_ST_I2C) += tpm_st_i2c.o
|
|
obj-$(CONFIG_TCG_NSC) += tpm_nsc.o
|
|
obj-$(CONFIG_TCG_ATMEL) += tpm_atmel.o
|
|
obj-$(CONFIG_TCG_INFINEON) += tpm_infineon.o
|
|
obj-$(CONFIG_TCG_TPMD_DEV) += tpmd_dev/
|