aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/crypto/ccp/ccp-platform.c
diff options
context:
space:
mode:
authorTom Lendacky <thomas.lendacky@amd.com>2015-10-01 16:32:50 -0500
committerHerbert Xu <herbert@gondor.apana.org.au>2015-10-08 21:42:18 +0800
commit166db195536f380c4545a8d2fca9789402464bc8 (patch)
treed24b0142f0ce431d71ce5bbb4995cb95a540b39d /drivers/crypto/ccp/ccp-platform.c
parentcrypto: ccp - Change references to accelerator to offload (diff)
downloadlinux-dev-166db195536f380c4545a8d2fca9789402464bc8.tar.xz
linux-dev-166db195536f380c4545a8d2fca9789402464bc8.zip
crypto: ccp - Use module name in driver structures
The convention is to use the name of the module in the driver structures that are used for registering the device. The CCP module is currently using a descriptive name. Replace the descriptive name with module name. Signed-off-by: Tom Lendacky <thomas.lendacky@amd.com> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to '')
-rw-r--r--drivers/crypto/ccp/ccp-platform.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/crypto/ccp/ccp-platform.c b/drivers/crypto/ccp/ccp-platform.c
index 4bc73d431751..8b923b7e9389 100644
--- a/drivers/crypto/ccp/ccp-platform.c
+++ b/drivers/crypto/ccp/ccp-platform.c
@@ -225,7 +225,7 @@ MODULE_DEVICE_TABLE(of, ccp_of_match);
static struct platform_driver ccp_platform_driver = {
.driver = {
- .name = "AMD Cryptographic Coprocessor",
+ .name = "ccp",
#ifdef CONFIG_ACPI
.acpi_match_table = ccp_acpi_match,
#endif