Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit bc197b2a authored by Julia Lawall's avatar Julia Lawall Committed by Herbert Xu
Browse files

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: default avatarJulia Lawall <Julia.Lawall@lip6.fr>
Acked-by: default avatarGary Hook <gary.hook@amd.com>
Signed-off-by: default avatarHerbert Xu <herbert@gondor.apana.org.au>
parent 472d640b
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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,
+1 −1
Original line number Diff line number Diff line
@@ -162,7 +162,7 @@ struct ccp_actions {
/* Structure to hold CCP version-specific values */
struct ccp_vdata {
	unsigned int version;
	struct ccp_actions *perform;
	const struct ccp_actions *perform;
};

extern struct ccp_vdata ccpv3;