summaryrefslogtreecommitdiff
path: root/crypto/proc.c
diff options
context:
space:
mode:
authorJan Engelhardt <jengelh@computergmbh.de>2008-03-13 19:37:45 +0800
committerHerbert Xu <herbert@gondor.apana.org.au>2008-04-21 10:19:22 +0800
commitc8e7b2815ae4e20f843651e3cb6c160596bb6a46 (patch)
tree096df1e4906149a1f177102456a4e351a0b1a7cb /crypto/proc.c
parente00d97f126c22a2390259b18d3ab313352fc79a7 (diff)
downloadlinux-crypto-c8e7b2815ae4e20f843651e3cb6c160596bb6a46.tar.gz
linux-crypto-c8e7b2815ae4e20f843651e3cb6c160596bb6a46.zip
[CRYPTO] api: Constify function pointer tables
Signed-off-by: Jan Engelhardt <jengelh@computergmbh.de> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'crypto/proc.c')
-rw-r--r--crypto/proc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/proc.c b/crypto/proc.c
index e482ab68..02ff5670 100644
--- a/crypto/proc.c
+++ b/crypto/proc.c
@@ -78,7 +78,7 @@ static int c_show(struct seq_file *m, void *p)
return 0;
}
-static struct seq_operations crypto_seq_ops = {
+static const struct seq_operations crypto_seq_ops = {
.start = c_start,
.next = c_next,
.stop = c_stop,