diff --git a/[refs] b/[refs] index 8d82344d1dd4..f03e26dc799c 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: b3be9a6d9a78bb820f5242f43b98f38b0ca610a6 +refs/heads/master: b14cdd6704c96474ba5c74b5959487beaa5ee1cd diff --git a/trunk/include/linux/crypto.h b/trunk/include/linux/crypto.h index 40a6330abc8d..d6e184c876b5 100644 --- a/trunk/include/linux/crypto.h +++ b/trunk/include/linux/crypto.h @@ -297,6 +297,16 @@ static inline const char *crypto_tfm_alg_name(struct crypto_tfm *tfm) return tfm->__crt_alg->cra_name; } +static inline const char *crypto_tfm_alg_driver_name(struct crypto_tfm *tfm) +{ + return tfm->__crt_alg->cra_driver_name; +} + +static inline int crypto_tfm_alg_priority(struct crypto_tfm *tfm) +{ + return tfm->__crt_alg->cra_priority; +} + static inline const char *crypto_tfm_alg_modname(struct crypto_tfm *tfm) { return module_name(tfm->__crt_alg->cra_module);