[PATCH net-next v2] net: microchip: vcap: Remove unneeded semicolons

zhang.songyi@zte.com.cn posted 1 patch 1 year, 3 months ago
drivers/net/ethernet/microchip/vcap/vcap_api.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
[PATCH net-next v2] net: microchip: vcap: Remove unneeded semicolons
Posted by zhang.songyi@zte.com.cn 1 year, 3 months ago
From: zhang songyi <zhang.songyi@zte.com.cn>

Semicolons after "}" are not needed.

Signed-off-by: zhang songyi <zhang.songyi@zte.com.cn>
---
 drivers/net/ethernet/microchip/vcap/vcap_api.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/net/ethernet/microchip/vcap/vcap_api.c b/drivers/net/ethernet/microchip/vcap/vcap_api.c
index f2435d7ab515..88ae263beeb0 100644
--- a/drivers/net/ethernet/microchip/vcap/vcap_api.c
+++ b/drivers/net/ethernet/microchip/vcap/vcap_api.c
@@ -1389,7 +1389,7 @@ static void vcap_copy_from_client_keyfield(struct vcap_rule *rule,
 		vcap_copy_to_w32be(field->data.u128.value, data->u128.value, size);
 		vcap_copy_to_w32be(field->data.u128.mask,  data->u128.mask, size);
 		break;
-	};
+	}
 }

 /* Check if the keyfield is already in the rule */
@@ -1579,7 +1579,7 @@ static void vcap_copy_from_client_actionfield(struct vcap_rule *rule,
 	case VCAP_FIELD_U128:
 		vcap_copy_to_w32be(field->data.u128.value, data->u128.value, size);
 		break;
-	};
+	}
 }

 /* Check if the actionfield is already in the rule */
-- 
2.15.2
Re: [PATCH net-next v2] net: microchip: vcap: Remove unneeded semicolons
Posted by patchwork-bot+netdevbpf@kernel.org 1 year, 3 months ago
Hello:

This patch was applied to netdev/net-next.git (master)
by Jakub Kicinski <kuba@kernel.org>:

On Mon, 5 Dec 2022 14:22:15 +0800 (CST) you wrote:
> From: zhang songyi <zhang.songyi@zte.com.cn>
> 
> Semicolons after "}" are not needed.
> 
> Signed-off-by: zhang songyi <zhang.songyi@zte.com.cn>
> ---
>  drivers/net/ethernet/microchip/vcap/vcap_api.c | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)

Here is the summary with links:
  - [net-next,v2] net: microchip: vcap: Remove unneeded semicolons
    https://git.kernel.org/netdev/net-next/c/e3bd74c3d190

You are awesome, thank you!
-- 
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
Re: [PATCH net-next v2] net: microchip: vcap: Remove unneeded semicolons
Posted by Jiri Pirko 1 year, 3 months ago
Mon, Dec 05, 2022 at 07:22:15AM CET, zhang.songyi@zte.com.cn wrote:
>From: zhang songyi <zhang.songyi@zte.com.cn>
>
>Semicolons after "}" are not needed.

Cool. But still, you should be imperative to the codebase and tell it
what to do.

>
>Signed-off-by: zhang songyi <zhang.songyi@zte.com.cn>

anyway,
Reviewed-by: Jiri Pirko <jiri@nvidia.com>