diff options
author | Hui Tang <tanghui20@huawei.com> | 2021-04-10 11:46:59 +0200 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2021-04-16 13:16:34 +0200 |
commit | a2035904f012090e6d5362bd9e0fe35eb3a32eb1 (patch) | |
tree | 534d37fc437002f986954cbe7343664472f148ac /drivers/crypto/hisilicon/hpre/hpre_main.c | |
parent | crypto: arm/curve25519 - Move '.fpu' after '.arch' (diff) | |
download | linux-a2035904f012090e6d5362bd9e0fe35eb3a32eb1.tar.xz linux-a2035904f012090e6d5362bd9e0fe35eb3a32eb1.zip |
crypto: hisilicon/hpre - delete the rudundant space after return
There are two spaces after return, just keep one.
Signed-off-by: Hui Tang <tanghui20@huawei.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'drivers/crypto/hisilicon/hpre/hpre_main.c')
-rw-r--r-- | drivers/crypto/hisilicon/hpre/hpre_main.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/crypto/hisilicon/hpre/hpre_main.c b/drivers/crypto/hisilicon/hpre/hpre_main.c index a8c79212057d..2962c33ca75c 100644 --- a/drivers/crypto/hisilicon/hpre/hpre_main.c +++ b/drivers/crypto/hisilicon/hpre/hpre_main.c @@ -472,7 +472,7 @@ static int hpre_clear_enable_write(struct hpre_debugfs_file *file, u32 val) ~HPRE_CTRL_CNT_CLR_CE_BIT) | val; writel(tmp, qm->io_base + HPRE_CTRL_CNT_CLR_CE); - return 0; + return 0; } static u32 hpre_cluster_inqry_read(struct hpre_debugfs_file *file) @@ -494,7 +494,7 @@ static int hpre_cluster_inqry_write(struct hpre_debugfs_file *file, u32 val) writel(val, qm->io_base + offset + HPRE_CLUSTER_INQURY); - return 0; + return 0; } static ssize_t hpre_ctrl_debug_read(struct file *filp, char __user *buf, |