Skip to content

Commit 0876d16

Browse files
codomaniaherbertx
authored andcommitted
crypto: ccp - remove duplicate module version and author entry
commit 720419f ("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 <[email protected]> Cc: Gary R Hook <[email protected]> Cc: Herbert Xu <[email protected]> Cc: David S. Miller <[email protected]> Signed-off-by: Brijesh Singh <[email protected]> Signed-off-by: Herbert Xu <[email protected]>
1 parent b66ad0b commit 0876d16

File tree

1 file changed

+0
-7
lines changed

1 file changed

+0
-7
lines changed

drivers/crypto/ccp/ccp-dev.c

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111
* published by the Free Software Foundation.
1212
*/
1313

14-
#include <linux/module.h>
1514
#include <linux/kernel.h>
1615
#include <linux/kthread.h>
1716
#include <linux/sched.h>
@@ -30,12 +29,6 @@
3029

3130
#include "ccp-dev.h"
3231

33-
MODULE_AUTHOR("Tom Lendacky <[email protected]>");
34-
MODULE_AUTHOR("Gary R Hook <[email protected]>");
35-
MODULE_LICENSE("GPL");
36-
MODULE_VERSION("1.1.0");
37-
MODULE_DESCRIPTION("AMD Cryptographic Coprocessor driver");
38-
3932
struct ccp_tasklet_data {
4033
struct completion completion;
4134
struct ccp_cmd *cmd;

0 commit comments

Comments
 (0)