aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorzhang songyi <[email protected]>2022-12-05 14:22:15 +0800
committerJakub Kicinski <[email protected]>2022-12-06 20:38:57 -0800
commite3bd74c3d1907360a37f49a0cdf02daa2983ff53 (patch)
treef026f3181d93cfd035431e74f7aa782c8afd0236
parent1ab586f5177b3b2805a05aa926a5b46d3d7f112c (diff)
net: microchip: vcap: Remove unneeded semicolons
Semicolons after "}" are not needed. Signed-off-by: zhang songyi <[email protected]> Reviewed-by: Jiri Pirko <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Jakub Kicinski <[email protected]>
-rw-r--r--drivers/net/ethernet/microchip/vcap/vcap_api.c4
1 files 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 05e915ea858d..664aae3e2acd 100644
--- a/drivers/net/ethernet/microchip/vcap/vcap_api.c
+++ b/drivers/net/ethernet/microchip/vcap/vcap_api.c
@@ -2197,7 +2197,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 */
@@ -2403,7 +2403,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 */