diff options
author | Yoichi Yuasa <yoichi_yuasa@tripeaks.co.jp> | 2006-11-17 11:51:41 +1100 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2006-11-20 08:27:08 +1100 |
commit | 610a5b742e9df4e59047f22d13d8bd83cafce388 (patch) | |
tree | e0832c72f355cb1f4bba74b1d6ea729614cbabb6 /include/linux | |
parent | e030f8294a5b9f8179dae10cdbf9dcf32aa64110 (diff) | |
download | op-kernel-dev-610a5b742e9df4e59047f22d13d8bd83cafce388.zip op-kernel-dev-610a5b742e9df4e59047f22d13d8bd83cafce388.tar.gz |
[CRYPTO] api: Remove one too many semicolon
This patch has removed one too many semicolon in crypto.h.
Signed-off-by: Yoichi Yuasa <yoichi_yuasa@tripeaks.co.jp>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'include/linux')
-rw-r--r-- | include/linux/crypto.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/crypto.h b/include/linux/crypto.h index 8f2ffa4..6485e97 100644 --- a/include/linux/crypto.h +++ b/include/linux/crypto.h @@ -245,7 +245,7 @@ int crypto_alg_available(const char *name, u32 flags) __deprecated_for_modules; int crypto_has_alg(const char *name, u32 type, u32 mask); #else -static int crypto_alg_available(const char *name, u32 flags); +static int crypto_alg_available(const char *name, u32 flags) __deprecated_for_modules; static inline int crypto_alg_available(const char *name, u32 flags) { |