Skip to content

Commit

Permalink
net: microchip: vcap: Remove unneeded semicolons
Browse files Browse the repository at this point in the history
Semicolons after "}" are not needed.

Signed-off-by: zhang songyi <zhang.songyi@zte.com.cn>
Reviewed-by: Jiri Pirko <jiri@nvidia.com>
Link: https://lore.kernel.org/r/202212051422158113766@zte.com.cn
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
  • Loading branch information
zhang songyi authored and Jakub Kicinski committed Dec 7, 2022
1 parent 1ab586f commit e3bd74c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/net/ethernet/microchip/vcap/vcap_api.c
Original file line number Diff line number Diff line change
Expand Up @@ -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 */
Expand Down Expand Up @@ -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 */
Expand Down

0 comments on commit e3bd74c

Please sign in to comment.