diff --git a/include/crypto/algapi.h b/include/crypto/algapi.h index ca86f4c6ba4394184459d918718814b5cc889154..7a4a71af653fa84b80f888ec695c9deacc91e77b 100644 --- a/include/crypto/algapi.h +++ b/include/crypto/algapi.h @@ -195,11 +195,6 @@ static inline void *crypto_tfm_ctx_align(struct crypto_tfm *tfm, return PTR_ALIGN(crypto_tfm_ctx(tfm), align); } -static inline void *crypto_tfm_ctx_aligned(struct crypto_tfm *tfm) -{ - return crypto_tfm_ctx_align(tfm, crypto_tfm_alg_alignmask(tfm) + 1); -} - static inline unsigned int crypto_dma_align(void) { return CRYPTO_DMA_ALIGN; diff --git a/include/crypto/internal/hash.h b/include/crypto/internal/hash.h index cf65676e45f4d4ee57be1fa864e2fa271006bc81..8d0cd0c591a092c99ddafa51ed249409a685bfff 100644 --- a/include/crypto/internal/hash.h +++ b/include/crypto/internal/hash.h @@ -269,11 +269,6 @@ static inline struct crypto_shash *crypto_spawn_shash( return crypto_spawn_tfm2(&spawn->base); } -static inline void *crypto_shash_ctx_aligned(struct crypto_shash *tfm) -{ - return crypto_tfm_ctx_aligned(&tfm->base); -} - static inline struct crypto_shash *__crypto_shash_cast(struct crypto_tfm *tfm) { return container_of(tfm, struct crypto_shash, base);