diff options
Diffstat (limited to 'include/crypto/internal/hash.h')
-rw-r--r-- | include/crypto/internal/hash.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/crypto/internal/hash.h b/include/crypto/internal/hash.h index f1041140d3d9..3af34ca8e8bc 100644 --- a/include/crypto/internal/hash.h +++ b/include/crypto/internal/hash.h | |||
@@ -128,5 +128,10 @@ static inline void *crypto_shash_ctx_aligned(struct crypto_shash *tfm) | |||
128 | return crypto_tfm_ctx_aligned(&tfm->base); | 128 | return crypto_tfm_ctx_aligned(&tfm->base); |
129 | } | 129 | } |
130 | 130 | ||
131 | static inline struct crypto_shash *__crypto_shash_cast(struct crypto_tfm *tfm) | ||
132 | { | ||
133 | return (struct crypto_shash *)tfm; | ||
134 | } | ||
135 | |||
131 | #endif /* _CRYPTO_INTERNAL_HASH_H */ | 136 | #endif /* _CRYPTO_INTERNAL_HASH_H */ |
132 | 137 | ||