Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

trusted-keys: rename trusted_defined files to trusted

Rename trusted_defined.c and trusted_defined.h files to trusted.c and
trusted.h, respectively. Based on request from David Howells.

Signed-off-by: Mimi Zohar <zohar@us.ibm.com>
Acked-by: David Howells <dhowells@redhat.com>
Signed-off-by: James Morris <jmorris@namei.org>

authored by

Mimi Zohar and committed by
James Morris
4b174b6d 1bae4ce2

+2 -2
+1 -1
security/keys/Makefile
··· 13 13 request_key_auth.o \ 14 14 user_defined.o 15 15 16 - obj-$(CONFIG_TRUSTED_KEYS) += trusted_defined.o 16 + obj-$(CONFIG_TRUSTED_KEYS) += trusted.o 17 17 obj-$(CONFIG_ENCRYPTED_KEYS) += encrypted_defined.o 18 18 obj-$(CONFIG_KEYS_COMPAT) += compat.o 19 19 obj-$(CONFIG_PROC_FS) += proc.o
+1 -1
security/keys/trusted_defined.c security/keys/trusted.c
··· 29 29 #include <linux/tpm.h> 30 30 #include <linux/tpm_command.h> 31 31 32 - #include "trusted_defined.h" 32 + #include "trusted.h" 33 33 34 34 static const char hmac_alg[] = "hmac(sha1)"; 35 35 static const char hash_alg[] = "sha1";
security/keys/trusted_defined.h security/keys/trusted.h