aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/crypto/ccp/ccp-dev-v3.c
diff options
context:
space:
mode:
authorJulia Lawall <Julia.Lawall@lip6.fr>2016-05-01 13:52:55 +0200
committerHerbert Xu <herbert@gondor.apana.org.au>2016-05-03 16:10:14 +0800
commitbc197b2a9c7e0129fa0ec1961881e2a0b3bef967 (patch)
treebfd8382badf61cb9bff3532a74dc28127c2389ae /drivers/crypto/ccp/ccp-dev-v3.c
parentcrypto: marvell/cesa - Use dma_pool_zalloc (diff)
downloadlinux-dev-bc197b2a9c7e0129fa0ec1961881e2a0b3bef967.tar.xz
linux-dev-bc197b2a9c7e0129fa0ec1961881e2a0b3bef967.zip
crypto: ccp - constify ccp_actions structure
The ccp_actions structure is never modified, so declare it as const. Done with the help of Coccinelle. Signed-off-by: Julia Lawall <Julia.Lawall@lip6.fr> Acked-by: Gary Hook <gary.hook@amd.com> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'drivers/crypto/ccp/ccp-dev-v3.c')
-rw-r--r--drivers/crypto/ccp/ccp-dev-v3.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/crypto/ccp/ccp-dev-v3.c b/drivers/crypto/ccp/ccp-dev-v3.c
index 597fc50bdaa6..d7a710347967 100644
--- a/drivers/crypto/ccp/ccp-dev-v3.c
+++ b/drivers/crypto/ccp/ccp-dev-v3.c
@@ -526,7 +526,7 @@ static irqreturn_t ccp_irq_handler(int irq, void *data)
return IRQ_HANDLED;
}
-static struct ccp_actions ccp3_actions = {
+static const struct ccp_actions ccp3_actions = {
.perform_aes = ccp_perform_aes,
.perform_xts_aes = ccp_perform_xts_aes,
.perform_sha = ccp_perform_sha,