Re: [PATCH] net: dsa: sja1105: simplify the return expression of sja1105_cls_flower_stats()

From: Jakub Kicinski
Date: Fri Apr 29 2022 - 21:46:45 EST


On Fri, 29 Apr 2022 05:52:26 +0000 cgel.zte@xxxxxxxxx wrote:
> From: Minghao Chi <chi.minghao@xxxxxxxxxx>
>
> Simplify the return expression.
>
> Reported-by: Zeal Robot <zealci@xxxxxxxxxx>
> Signed-off-by: Minghao Chi <chi.minghao@xxxxxxxxxx>
> ---
> drivers/net/dsa/sja1105/sja1105_flower.c | 7 +------
> 1 file changed, 1 insertion(+), 6 deletions(-)
>
> diff --git a/drivers/net/dsa/sja1105/sja1105_flower.c b/drivers/net/dsa/sja1105/sja1105_flower.c
> index fad5afe3819c..16c93159e475 100644
> --- a/drivers/net/dsa/sja1105/sja1105_flower.c
> +++ b/drivers/net/dsa/sja1105/sja1105_flower.c
> @@ -501,7 +501,6 @@ int sja1105_cls_flower_stats(struct dsa_switch *ds, int port,
> {
> struct sja1105_private *priv = ds->priv;
> struct sja1105_rule *rule = sja1105_rule_find(priv, cls->cookie);
> - int rc;
>
> if (!rule)
> return 0;
> @@ -509,12 +508,8 @@ int sja1105_cls_flower_stats(struct dsa_switch *ds, int port,
> if (rule->type != SJA1105_RULE_VL)
> return 0;
>
> - rc = sja1105_vl_stats(priv, port, rule, &cls->stats,
> + return sja1105_vl_stats(priv, port, rule, &cls->stats,
> cls->common.extack);

align continuation line

> - if (rc)
> - return rc;
> -
> - return 0;
> }
>
> void sja1105_flower_setup(struct dsa_switch *ds)