[PATCH -next] thermal: bcm2835: remove redundant dev_err call in bcm2835_thermal_probe()

2021-04-08 Thread Ruiqi Gong
There is a error message within devm_ioremap_resource
already, so remove the dev_err call to avoid redundant
error message.

Reported-by: Hulk Robot 
Signed-off-by: Ruiqi Gong 
---
 drivers/thermal/broadcom/bcm2835_thermal.c | 1 -
 1 file changed, 1 deletion(-)

diff --git a/drivers/thermal/broadcom/bcm2835_thermal.c 
b/drivers/thermal/broadcom/bcm2835_thermal.c
index 3199977f1e73..c8e4344d5a3d 100644
--- a/drivers/thermal/broadcom/bcm2835_thermal.c
+++ b/drivers/thermal/broadcom/bcm2835_thermal.c
@@ -184,7 +184,6 @@ static int bcm2835_thermal_probe(struct platform_device 
*pdev)
data->regs = devm_ioremap_resource(&pdev->dev, res);
if (IS_ERR(data->regs)) {
err = PTR_ERR(data->regs);
-   dev_err(&pdev->dev, "Could not get registers: %d\n", err);
return err;
}
 



[PATCH -next] thermal: thermal_mmio: remove redundant dev_err call in thermal_mmio_probe()

2021-04-08 Thread Ruiqi Gong
There is a error message within devm_ioremap_resource
already, so remove the dev_err call to avoid redundant
error message.

Reported-by: Hulk Robot 
Signed-off-by: Ruiqi Gong 
---
 drivers/thermal/thermal_mmio.c | 5 +
 1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/drivers/thermal/thermal_mmio.c b/drivers/thermal/thermal_mmio.c
index d0bdf1ea3331..ded1dd0d4ef7 100644
--- a/drivers/thermal/thermal_mmio.c
+++ b/drivers/thermal/thermal_mmio.c
@@ -54,11 +54,8 @@ static int thermal_mmio_probe(struct platform_device *pdev)
 
resource = platform_get_resource(pdev, IORESOURCE_MEM, 0);
sensor->mmio_base = devm_ioremap_resource(&pdev->dev, resource);
-   if (IS_ERR(sensor->mmio_base)) {
-   dev_err(&pdev->dev, "failed to ioremap memory (%ld)\n",
-   PTR_ERR(sensor->mmio_base));
+   if (IS_ERR(sensor->mmio_base))
return PTR_ERR(sensor->mmio_base);
-   }
 
sensor_init_func = device_get_match_data(&pdev->dev);
if (sensor_init_func) {



[PATCH -next] cifsd: remove unused header

2021-04-08 Thread Ruiqi Gong
Remove the header  that is not needed.

Reported-by: Hulk Robot 
Signed-off-by: Ruiqi Gong 
---
 fs/cifsd/mgmt/tree_connect.c | 1 -
 fs/cifsd/mgmt/user_session.c | 1 -
 fs/cifsd/mgmt/user_session.h | 1 -
 3 files changed, 3 deletions(-)

diff --git a/fs/cifsd/mgmt/tree_connect.c b/fs/cifsd/mgmt/tree_connect.c
index d3f28b10db4b..b9cd8fc46e5e 100644
--- a/fs/cifsd/mgmt/tree_connect.c
+++ b/fs/cifsd/mgmt/tree_connect.c
@@ -5,7 +5,6 @@
 
 #include 
 #include 
-#include 
 #include 
 
 #include "../buffer_pool.h"
diff --git a/fs/cifsd/mgmt/user_session.c b/fs/cifsd/mgmt/user_session.c
index bd5789b7e08e..52c5c036ecf9 100644
--- a/fs/cifsd/mgmt/user_session.c
+++ b/fs/cifsd/mgmt/user_session.c
@@ -6,7 +6,6 @@
 #include 
 #include 
 #include 
-#include 
 #include 
 
 #include "ksmbd_ida.h"
diff --git a/fs/cifsd/mgmt/user_session.h b/fs/cifsd/mgmt/user_session.h
index 1a97c851f2fc..ad5c0430b62a 100644
--- a/fs/cifsd/mgmt/user_session.h
+++ b/fs/cifsd/mgmt/user_session.h
@@ -7,7 +7,6 @@
 #define __USER_SESSION_MANAGEMENT_H__
 
 #include 
-#include 
 #include 
 
 #include "../smb_common.h"



[PATCH -next] erofs: Clean up spelling mistakes found in fs/erofs

2021-03-31 Thread Ruiqi Gong
zmap.c:  s/correspoinding/corresponding
zdata.c: s/endding/ending

Reported-by: Hulk Robot 
Signed-off-by: Ruiqi Gong 
---
 fs/erofs/zdata.c | 2 +-
 fs/erofs/zmap.c  | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/fs/erofs/zdata.c b/fs/erofs/zdata.c
index cd9b76216925..4226f4115981 100644
--- a/fs/erofs/zdata.c
+++ b/fs/erofs/zdata.c
@@ -933,7 +933,7 @@ static int z_erofs_decompress_pcluster(struct super_block 
*sb,
 }, pagepool);
 
 out:
-   /* must handle all compressed pages before endding pages */
+   /* must handle all compressed pages before ending pages */
for (i = 0; i < clusterpages; ++i) {
page = compressed_pages[i];
 
diff --git a/fs/erofs/zmap.c b/fs/erofs/zmap.c
index 14d2de35110c..b384f546d368 100644
--- a/fs/erofs/zmap.c
+++ b/fs/erofs/zmap.c
@@ -443,7 +443,7 @@ int z_erofs_map_blocks_iter(struct inode *inode,
m.delta[0] = 1;
fallthrough;
case Z_EROFS_VLE_CLUSTER_TYPE_NONHEAD:
-   /* get the correspoinding first chunk */
+   /* get the corresponding first chunk */
err = z_erofs_extent_lookback(&m, m.delta[0]);
if (err)
goto unmap_out;
-- 
2.17.1



[PATCH -next] RDMA/hns: Fix a spelling mistake in hns_roce_hw_v1.c

2021-03-30 Thread Ruiqi Gong
s/caculating/calculating

Reported-by: Hulk Robot 
Signed-off-by: Ruiqi Gong 
---
 drivers/infiniband/hw/hns/hns_roce_hw_v1.c | 8 
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/drivers/infiniband/hw/hns/hns_roce_hw_v1.c 
b/drivers/infiniband/hw/hns/hns_roce_hw_v1.c
index 759ffe52567a..414e9f33ba49 100644
--- a/drivers/infiniband/hw/hns/hns_roce_hw_v1.c
+++ b/drivers/infiniband/hw/hns/hns_roce_hw_v1.c
@@ -538,7 +538,7 @@ static void hns_roce_set_sdb_ext(struct hns_roce_dev 
*hr_dev, u32 ext_sdb_alept,
/*
 * 44 = 32 + 12, When evaluating addr to hardware, shift 12 because of
 * using 4K page, and shift more 32 because of
-* caculating the high 32 bit value evaluated to hardware.
+* calculating the high 32 bit value evaluated to hardware.
 */
roce_set_field(tmp, ROCEE_EXT_DB_SQ_H_EXT_DB_SQ_BA_H_M,
   ROCEE_EXT_DB_SQ_H_EXT_DB_SQ_BA_H_S, sdb_dma_addr >> 44);
@@ -1189,7 +1189,7 @@ static int hns_roce_raq_init(struct hns_roce_dev *hr_dev)
/*
 * 44 = 32 + 12, When evaluating addr to hardware, shift 12 because of
 * using 4K page, and shift more 32 because of
-* caculating the high 32 bit value evaluated to hardware.
+* calculating the high 32 bit value evaluated to hardware.
 */
roce_set_field(tmp, ROCEE_EXT_RAQ_H_EXT_RAQ_BA_H_M,
   ROCEE_EXT_RAQ_H_EXT_RAQ_BA_H_S,
@@ -2041,7 +2041,7 @@ static void hns_roce_v1_write_cqc(struct hns_roce_dev 
*hr_dev,
/**
 * 44 = 32 + 12, When evaluating addr to hardware, shift 12 because of
 * using 4K page, and shift more 32 because of
-* caculating the high 32 bit value evaluated to hardware.
+* calculating the high 32 bit value evaluated to hardware.
 */
roce_set_field(cq_context->cqc_byte_20,
   CQ_CONTEXT_CQC_BYTE_20_CQE_TPTR_ADDR_H_M,
@@ -4170,7 +4170,7 @@ static int hns_roce_v1_create_eq(struct hns_roce_dev 
*hr_dev,
 * Configure eq extended address 45~49 bit.
 * 44 = 32 + 12, When evaluating addr to hardware, shift 12 because of
 * using 4K page, and shift more 32 because of
-* caculating the high 32 bit value evaluated to hardware.
+* calculating the high 32 bit value evaluated to hardware.
 */
roce_set_field(tmp1, ROCEE_CAEP_AEQE_CUR_IDX_CAEP_AEQ_BT_H_M,
   ROCEE_CAEP_AEQE_CUR_IDX_CAEP_AEQ_BT_H_S,
-- 
2.17.1



[PATCH -next] crypto: hisilicon/hpre - fix a typo in hpre_crypto.c

2021-03-30 Thread Ruiqi Gong
Do a trivial typo fix.
s/discribed/described

Reported-by: Hulk Robot 
Signed-off-by: Ruiqi Gong 
---
 drivers/crypto/hisilicon/hpre/hpre_crypto.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/crypto/hisilicon/hpre/hpre_crypto.c 
b/drivers/crypto/hisilicon/hpre/hpre_crypto.c
index d743c540d602..9fbb573fdb1e 100644
--- a/drivers/crypto/hisilicon/hpre/hpre_crypto.c
+++ b/drivers/crypto/hisilicon/hpre/hpre_crypto.c
@@ -1758,7 +1758,7 @@ static int hpre_curve25519_src_init(struct 
hpre_asym_request *hpre_req,
 
/*
 * Src_data(gx) is in little-endian order, MSB in the final byte should
-* be masked as discribed in RFC7748, then transform it to big-endian
+* be masked as described in RFC7748, then transform it to big-endian
 * form, then hisi_hpre can use the data.
 */
ptr[31] &= 0x7f;
-- 
2.17.1



[PATCH -next] f2fs: fix a typo in inode.c

2021-03-24 Thread Ruiqi Gong
Do a trivial typo fix.
s/runing/running

Reported-by: Hulk Robot 
Signed-off-by: Ruiqi Gong 
---
 fs/f2fs/inode.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/fs/f2fs/inode.c b/fs/f2fs/inode.c
index 349d9cb933ee..5d2253d53f17 100644
--- a/fs/f2fs/inode.c
+++ b/fs/f2fs/inode.c
@@ -698,7 +698,7 @@ int f2fs_write_inode(struct inode *inode, struct 
writeback_control *wbc)
 
/*
 * We need to balance fs here to prevent from producing dirty node pages
-* during the urgent cleaning time when runing out of free sections.
+* during the urgent cleaning time when running out of free sections.
 */
f2fs_update_inode_page(inode);
if (wbc && wbc->nr_to_write)
-- 
2.17.1