Make the tpm Makefile a bit more in order by putting objects in one column and group together tpm2 modules Prefer tpm-objs += instead of tpm-y += notation. Signed-off-by: Tomas Winkler <tomas.winkler@xxxxxxxxx> --- drivers/char/tpm/Makefile | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/drivers/char/tpm/Makefile b/drivers/char/tpm/Makefile index acd758381c58..2fc0e9a73cd6 100644 --- a/drivers/char/tpm/Makefile +++ b/drivers/char/tpm/Makefile @@ -3,9 +3,17 @@ # Makefile for the kernel tpm device drivers. # obj-$(CONFIG_TCG_TPM) += tpm.o -tpm-y := tpm-interface.o tpm-dev.o tpm-sysfs.o tpm-chip.o tpm2-cmd.o \ - tpm-dev-common.o tpmrm-dev.o tpm1_eventlog.o tpm2_eventlog.o \ - tpm2-space.o +tpm-objs := tpm-interface.o +tpm-objs += tpm-dev.o +tpm-objs += tpm-chip.o +tpm-objs += tpm-dev-common.o +tpm-objs += tpmrm-dev.o +tpm-objs += tpm-sysfs.o +tpm-objs += tpm1_eventlog.o +tpm-objs += tpm2-cmd.o +tpm-objs += tpm2-space.o +tpm-objs += tpm2_eventlog.o + tpm-$(CONFIG_ACPI) += tpm_ppi.o tpm_eventlog_acpi.o tpm-$(CONFIG_EFI) += tpm_eventlog_efi.o tpm-$(CONFIG_OF) += tpm_eventlog_of.o -- 2.14.3