diff options
author | Jan Engelhardt <jengelh@computergmbh.de> | 2008-03-13 19:37:45 +0800 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2008-04-21 10:19:22 +0800 |
commit | 48c8949ea8460216783dd33640121187b9531b60 (patch) | |
tree | a76029aeb40261252471bcb2665ae86005f05a5d /crypto | |
parent | 744b5a28109e6a107c24a1426ee22f92b17995e9 (diff) | |
download | linux-48c8949ea8460216783dd33640121187b9531b60.tar.bz2 |
[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')
-rw-r--r-- | crypto/proc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/proc.c b/crypto/proc.c index e482ab68a7ce..02ff5670c158 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, |