mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-16 01:38:22 +00:00
2419cd16a1
Now that all TPM drivers use driver model, we can drop the special driver model CONFIG option. Signed-off-by: Simon Glass <sjg@chromium.org> Acked-by: Christophe Ricard<christophe-h.ricard@st.com>
11 lines
337 B
Makefile
11 lines
337 B
Makefile
# Copyright (c) 2011 The Chromium OS Authors. All rights reserved.
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
|
|
obj-$(CONFIG_TPM) += tpm-uclass.o
|
|
|
|
obj-$(CONFIG_TPM_ATMEL_TWI) += tpm_atmel_twi.o
|
|
obj-$(CONFIG_TPM_TIS_INFINEON) += tpm_tis_infineon.o
|
|
obj-$(CONFIG_TPM_TIS_LPC) += tpm_tis_lpc.o
|
|
obj-$(CONFIG_TPM_TIS_SANDBOX) += tpm_tis_sandbox.o
|