aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/crypto
diff options
context:
space:
mode:
authorMasahiro Yamada <yamada.masahiro@socionext.com>2016-09-12 15:27:54 -0400
committerHerbert Xu <herbert@gondor.apana.org.au>2016-09-13 08:27:26 -0400
commit36e09e1f874baf581604a76ce81aae0538eb0a23 (patch)
tree4a97f41ba9255097188b1c26edd6782c10fb1b68 /drivers/crypto
parente9afc746299d39f415fdb13b1213137deb4fc497 (diff)
crypto: squash lines for simple wrapper functions
Remove unneeded variables and assignments. Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'drivers/crypto')
-rw-r--r--drivers/crypto/hifn_795x.c12
1 files changed, 2 insertions, 10 deletions
diff --git a/drivers/crypto/hifn_795x.c b/drivers/crypto/hifn_795x.c
index eee2c7e6c299..e09d4055b19e 100644
--- a/drivers/crypto/hifn_795x.c
+++ b/drivers/crypto/hifn_795x.c
@@ -636,20 +636,12 @@ struct hifn_request_context {
636 636
637static inline u32 hifn_read_0(struct hifn_device *dev, u32 reg) 637static inline u32 hifn_read_0(struct hifn_device *dev, u32 reg)
638{ 638{
639 u32 ret; 639 return readl(dev->bar[0] + reg);
640
641 ret = readl(dev->bar[0] + reg);
642
643 return ret;
644} 640}
645 641
646static inline u32 hifn_read_1(struct hifn_device *dev, u32 reg) 642static inline u32 hifn_read_1(struct hifn_device *dev, u32 reg)
647{ 643{
648 u32 ret; 644 return readl(dev->bar[1] + reg);
649
650 ret = readl(dev->bar[1] + reg);
651
652 return ret;
653} 645}
654 646
655static inline void hifn_write_0(struct hifn_device *dev, u32 reg, u32 val) 647static inline void hifn_write_0(struct hifn_device *dev, u32 reg, u32 val)