From: Jason Gunthorpe Date: Sun, 6 Oct 2013 18:00:51 +0000 (-0600) Subject: tpm: Rename tpm.c to tpm-interface.c X-Git-Tag: v3.13-rc1~18^2~42 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=9deb0eb7cad450cd942a0eca11a198f6d24cb3d4;p=profile%2Fivi%2Fkernel-x86-ivi.git tpm: Rename tpm.c to tpm-interface.c This is preparation for making the tpm module multi-file. kbuild does not like having a .c file with the same name as a module. We wish to keep the tpm module name so that userspace doesn't see this change. tpm-interface.c is chosen because the next several commits in the series migrate items into tpm-sysfs.c, tpm-dev.c and tpm-class.c. All that will be left is tpm command processing and interfacing code. Signed-off-by: Jason Gunthorpe --- diff --git a/drivers/char/tpm/Makefile b/drivers/char/tpm/Makefile index eb41ff9..83b8a9d 100644 --- a/drivers/char/tpm/Makefile +++ b/drivers/char/tpm/Makefile @@ -2,6 +2,8 @@ # Makefile for the kernel tpm device drivers. # obj-$(CONFIG_TCG_TPM) += tpm.o +tpm-y := tpm-interface.o + ifdef CONFIG_ACPI obj-$(CONFIG_TCG_TPM) += tpm_bios.o tpm_bios-objs += tpm_eventlog.o tpm_acpi.o tpm_ppi.o diff --git a/drivers/char/tpm/tpm.c b/drivers/char/tpm/tpm-interface.c similarity index 100% rename from drivers/char/tpm/tpm.c rename to drivers/char/tpm/tpm-interface.c