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

crypto: chelsio/chcr - Remove useless MODULE_VERSION

kernel version describes module state more accurately.
hence remove chcr versioning.

Signed-off-by: Vinay Kumar Yadav <vinay.yadav@chelsio.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>

authored by

Vinay Kumar Yadav and committed by
Herbert Xu
66810912 01fec8c3

+1 -3
+1 -2
drivers/crypto/chelsio/chcr_core.c
··· 184 184 struct uld_ctx *u_ctx; 185 185 186 186 /* Create the device and add it in the device list */ 187 - pr_info_once("%s - version %s\n", DRV_DESC, DRV_VERSION); 187 + pr_info_once("%s\n", DRV_DESC); 188 188 if (!(lld->ulp_crypto & ULP_CRYPTO_LOOKASIDE)) 189 189 return ERR_PTR(-EOPNOTSUPP); 190 190 ··· 309 309 MODULE_DESCRIPTION("Crypto Co-processor for Chelsio Terminator cards."); 310 310 MODULE_LICENSE("GPL"); 311 311 MODULE_AUTHOR("Chelsio Communications"); 312 - MODULE_VERSION(DRV_VERSION);
-1
drivers/crypto/chelsio/chcr_core.h
··· 44 44 #include "cxgb4_uld.h" 45 45 46 46 #define DRV_MODULE_NAME "chcr" 47 - #define DRV_VERSION "1.0.0.0-ko" 48 47 #define DRV_DESC "Chelsio T6 Crypto Co-processor Driver" 49 48 50 49 #define MAX_PENDING_REQ_TO_HW 20