Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 34213
b: refs/heads/master
c: b14cdd6
h: refs/heads/master
i:
  34211: a321160
v: v3
  • Loading branch information
Michal Ludvig authored and Herbert Xu committed Sep 21, 2006
1 parent a115b84 commit fc0b3e7
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: b3be9a6d9a78bb820f5242f43b98f38b0ca610a6
refs/heads/master: b14cdd6704c96474ba5c74b5959487beaa5ee1cd
10 changes: 10 additions & 0 deletions trunk/include/linux/crypto.h
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit fc0b3e7

Please sign in to comment.