Commit 36e09e1f authored by Masahiro Yamada's avatar Masahiro Yamada Committed by Herbert Xu

crypto: squash lines for simple wrapper functions

Remove unneeded variables and assignments.
Signed-off-by: default avatarMasahiro Yamada <yamada.masahiro@socionext.com>
Signed-off-by: default avatarHerbert Xu <herbert@gondor.apana.org.au>
parent e9afc746
...@@ -107,10 +107,7 @@ static struct shash_alg alg = { ...@@ -107,10 +107,7 @@ static struct shash_alg alg = {
static int __init crct10dif_mod_init(void) static int __init crct10dif_mod_init(void)
{ {
int ret; return crypto_register_shash(&alg);
ret = crypto_register_shash(&alg);
return ret;
} }
static void __exit crct10dif_mod_fini(void) static void __exit crct10dif_mod_fini(void)
......
...@@ -612,12 +612,7 @@ EXPORT_SYMBOL_GPL(mcryptd_alloc_ahash); ...@@ -612,12 +612,7 @@ EXPORT_SYMBOL_GPL(mcryptd_alloc_ahash);
int ahash_mcryptd_digest(struct ahash_request *desc) int ahash_mcryptd_digest(struct ahash_request *desc)
{ {
int err; return crypto_ahash_init(desc) ?: ahash_mcryptd_finup(desc);
err = crypto_ahash_init(desc) ?:
ahash_mcryptd_finup(desc);
return err;
} }
int ahash_mcryptd_update(struct ahash_request *desc) int ahash_mcryptd_update(struct ahash_request *desc)
......
...@@ -636,20 +636,12 @@ struct hifn_request_context { ...@@ -636,20 +636,12 @@ struct hifn_request_context {
static inline u32 hifn_read_0(struct hifn_device *dev, u32 reg) static inline u32 hifn_read_0(struct hifn_device *dev, u32 reg)
{ {
u32 ret; return readl(dev->bar[0] + reg);
ret = readl(dev->bar[0] + reg);
return ret;
} }
static inline u32 hifn_read_1(struct hifn_device *dev, u32 reg) static inline u32 hifn_read_1(struct hifn_device *dev, u32 reg)
{ {
u32 ret; return readl(dev->bar[1] + reg);
ret = readl(dev->bar[1] + reg);
return ret;
} }
static inline void hifn_write_0(struct hifn_device *dev, u32 reg, u32 val) static inline void hifn_write_0(struct hifn_device *dev, u32 reg, u32 val)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment