2022-08-23 17:24:42

by CGEL

[permalink] [raw]
Subject: [PATCH linux-next] soc: qcom: icc-bwmon: remove redundant ret variable

From: Jinpeng Cui <[email protected]>

Return value from devm_regmap_field_bulk_alloc() directly
instead of taking this in another redundant variable.

Reported-by: Zeal Robot <[email protected]>
Signed-off-by: Jinpeng Cui <[email protected]>
---
drivers/soc/qcom/icc-bwmon.c | 6 ++----
1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/drivers/soc/qcom/icc-bwmon.c b/drivers/soc/qcom/icc-bwmon.c
index 47c2c3e7bb3f..9df47afb0d81 100644
--- a/drivers/soc/qcom/icc-bwmon.c
+++ b/drivers/soc/qcom/icc-bwmon.c
@@ -551,7 +551,6 @@ static int bwmon_init_regmap(struct platform_device *pdev,
struct device *dev = &pdev->dev;
void __iomem *base;
struct regmap *map;
- int ret;

base = devm_platform_ioremap_resource(pdev, 0);
if (IS_ERR(base))
@@ -565,11 +564,10 @@ static int bwmon_init_regmap(struct platform_device *pdev,

BUILD_BUG_ON(ARRAY_SIZE(msm8998_bwmon_reg_fields) != F_NUM_FIELDS);
BUILD_BUG_ON(ARRAY_SIZE(sdm845_llcc_bwmon_reg_fields) != F_NUM_FIELDS);
- ret = devm_regmap_field_bulk_alloc(dev, map, bwmon->regs,
+
+ return devm_regmap_field_bulk_alloc(dev, map, bwmon->regs,
bwmon->data->regmap_fields,
F_NUM_FIELDS);
-
- return ret;
}

static int bwmon_probe(struct platform_device *pdev)
--
2.25.1


2022-08-23 17:25:08

by Krzysztof Kozlowski

[permalink] [raw]
Subject: Re: [PATCH linux-next] soc: qcom: icc-bwmon: remove redundant ret variable

On 23/08/2022 16:36, [email protected] wrote:
> From: Jinpeng Cui <[email protected]>
>
> Return value from devm_regmap_field_bulk_alloc() directly
> instead of taking this in another redundant variable.
>
> Reported-by: Zeal Robot <[email protected]>

I cannot find this report. This is an open source work and public
collaboration. The "Reported-by" usually means that the issue was
reported to us, in some way, usually in public. Can we see the report?
Otherwise adding non-public, non-verifiable reports is useless and
clutters our report-credit-system.


> Signed-off-by: Jinpeng Cui <[email protected]>
> ---
> drivers/soc/qcom/icc-bwmon.c | 6 ++----
> 1 file changed, 2 insertions(+), 4 deletions(-)
>

Reviewed-by: Krzysztof Kozlowski <[email protected]>


Best regards,
Krzysztof

2022-08-29 23:48:29

by Bjorn Andersson

[permalink] [raw]
Subject: Re: [PATCH linux-next] soc: qcom: icc-bwmon: remove redundant ret variable

On Tue, 23 Aug 2022 13:36:20 +0000, [email protected] wrote:
> From: Jinpeng Cui <[email protected]>
>
> Return value from devm_regmap_field_bulk_alloc() directly
> instead of taking this in another redundant variable.
>
>

Applied, thanks!

[1/1] soc: qcom: icc-bwmon: remove redundant ret variable
commit: 7eb89c17abd2574f627c1277a15f6ff64bec33a4

Best regards,
--
Bjorn Andersson <[email protected]>