diff options
author | Alexey Dobriyan <adobriyan@sw.ru> | 2008-01-08 13:36:34 +0300 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2008-01-11 00:17:02 +0300 |
commit | b966b54654598aebdac9c57f102d769b36d2f68f (patch) | |
tree | af720678d479270b9a1f4e013f09e013c792db4f /drivers/crypto/hifn_795x.c | |
parent | e6ccc727f30a02670f6a00df6d548942bc988f43 (diff) | |
download | linux-b966b54654598aebdac9c57f102d769b36d2f68f.tar.xz |
[CRYPTO] hifn_795x: Fixup container_of() usage
Signed-off-by: Alexey Dobriyan <adobriyan@sw.ru>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'drivers/crypto/hifn_795x.c')
-rw-r--r-- | drivers/crypto/hifn_795x.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/crypto/hifn_795x.c b/drivers/crypto/hifn_795x.c index 1a197003f1a2..16413e57597c 100644 --- a/drivers/crypto/hifn_795x.c +++ b/drivers/crypto/hifn_795x.c @@ -664,7 +664,7 @@ struct hifn_context atomic_t sg_num; }; -#define crypto_alg_to_hifn(alg) container_of(alg, struct hifn_crypto_alg, alg) +#define crypto_alg_to_hifn(a) container_of(a, struct hifn_crypto_alg, alg) static inline u32 hifn_read_0(struct hifn_device *dev, u32 reg) { |