From: Brijesh Singh Date: Thu, 20 Jul 2017 03:29:08 +0000 (-0500) Subject: crypto: ccp - remove duplicate module version and author entry X-Git-Tag: Ubuntu-5.10.0-12.13~9526^2~56 X-Git-Url: https://git.proxmox.com/?a=commitdiff_plain;h=0876d16124d41b78f7fdbd96ad42b1d7b13fe620;p=mirror_ubuntu-hirsute-kernel.git crypto: ccp - remove duplicate module version and author entry commit 720419f01832 ("crypto: ccp - Introduce the AMD Secure Processor device") moved the module registeration from ccp-dev.c to sp-dev.c but patch missed removing the module version and author entry from ccp-dev.c. It causes the below warning during boot when CONFIG_CRYPTO_DEV_SP_CCP=y and CONFIG_CRYPTO_DEV_CCP_CRYPTO=y is set. [ 0.187825] sysfs: cannot create duplicate filename '/module/ccp/version' [ 0.187825] sysfs: cannot create duplicate filename '/module/ccp/version' Cc: Tom Lendacky Cc: Gary R Hook Cc: Herbert Xu Cc: David S. Miller Signed-off-by: Brijesh Singh Signed-off-by: Herbert Xu --- diff --git a/drivers/crypto/ccp/ccp-dev.c b/drivers/crypto/ccp/ccp-dev.c index 52eb3ed25a26..4e029b176641 100644 --- a/drivers/crypto/ccp/ccp-dev.c +++ b/drivers/crypto/ccp/ccp-dev.c @@ -11,7 +11,6 @@ * published by the Free Software Foundation. */ -#include #include #include #include @@ -30,12 +29,6 @@ #include "ccp-dev.h" -MODULE_AUTHOR("Tom Lendacky "); -MODULE_AUTHOR("Gary R Hook "); -MODULE_LICENSE("GPL"); -MODULE_VERSION("1.1.0"); -MODULE_DESCRIPTION("AMD Cryptographic Coprocessor driver"); - struct ccp_tasklet_data { struct completion completion; struct ccp_cmd *cmd;