mirror of
https://github.com/FEX-Emu/linux.git
synced 2024-12-23 09:56:00 +00:00
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>
This commit is contained in:
parent
472d640bd0
commit
bc197b2a9c
@ -526,7 +526,7 @@ static irqreturn_t ccp_irq_handler(int irq, void *data)
|
|||||||
return IRQ_HANDLED;
|
return IRQ_HANDLED;
|
||||||
}
|
}
|
||||||
|
|
||||||
static struct ccp_actions ccp3_actions = {
|
static const struct ccp_actions ccp3_actions = {
|
||||||
.perform_aes = ccp_perform_aes,
|
.perform_aes = ccp_perform_aes,
|
||||||
.perform_xts_aes = ccp_perform_xts_aes,
|
.perform_xts_aes = ccp_perform_xts_aes,
|
||||||
.perform_sha = ccp_perform_sha,
|
.perform_sha = ccp_perform_sha,
|
||||||
|
@ -162,7 +162,7 @@ struct ccp_actions {
|
|||||||
/* Structure to hold CCP version-specific values */
|
/* Structure to hold CCP version-specific values */
|
||||||
struct ccp_vdata {
|
struct ccp_vdata {
|
||||||
unsigned int version;
|
unsigned int version;
|
||||||
struct ccp_actions *perform;
|
const struct ccp_actions *perform;
|
||||||
};
|
};
|
||||||
|
|
||||||
extern struct ccp_vdata ccpv3;
|
extern struct ccp_vdata ccpv3;
|
||||||
|
Loading…
Reference in New Issue
Block a user