aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/hash.c
diff options
context:
space:
mode:
authorHerbert Xu <herbert@gondor.apana.org.au>2006-12-31 10:42:06 +1100
committerHerbert Xu <herbert@gondor.apana.org.au>2007-05-02 14:38:29 +1000
commit03f5d8cedb31deb558cd97095730cbc8bc54b12a (patch)
tree776d1cc603f3b6ef2506573743ae2d30054f83f1 /crypto/hash.c
parentlibata: honour host controllers that want just one host (diff)
downloadlinux-dev-03f5d8cedb31deb558cd97095730cbc8bc54b12a.tar.xz
linux-dev-03f5d8cedb31deb558cd97095730cbc8bc54b12a.zip
[CRYPTO] api: Proc functions should be marked as unused
The proc functions were incorrectly marked as used rather than unused. They may be unused if proc is disabled. Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'crypto/hash.c')
-rw-r--r--crypto/hash.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/hash.c b/crypto/hash.c
index 12c4514f3478..4ccd22deef39 100644
--- a/crypto/hash.c
+++ b/crypto/hash.c
@@ -41,7 +41,7 @@ static int crypto_init_hash_ops(struct crypto_tfm *tfm, u32 type, u32 mask)
}
static void crypto_hash_show(struct seq_file *m, struct crypto_alg *alg)
- __attribute_used__;
+ __attribute__ ((unused));
static void crypto_hash_show(struct seq_file *m, struct crypto_alg *alg)
{
seq_printf(m, "type : hash\n");