Checks
Commit Message
When moving the alignment attribute, a semicolon was missed.
Fixes: 27595cd83053 ("drivers: move alignment attribute on types for MSVC")
Signed-off-by: Thomas Monjalon <thomas@monjalon.net>
---
drivers/crypto/mvsam/rte_mrvl_pmd.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
Comments
15/05/2024 18:34, Thomas Monjalon:
> When moving the alignment attribute, a semicolon was missed.
>
> Fixes: 27595cd83053 ("drivers: move alignment attribute on types for MSVC")
>
> Signed-off-by: Thomas Monjalon <thomas@monjalon.net>
> ---
> -}
> +};
Applied
On Wed, May 15, 2024 at 06:34:14PM +0200, Thomas Monjalon wrote:
> When moving the alignment attribute, a semicolon was missed.
>
> Fixes: 27595cd83053 ("drivers: move alignment attribute on types for MSVC")
>
> Signed-off-by: Thomas Monjalon <thomas@monjalon.net>
> ---
> drivers/crypto/mvsam/rte_mrvl_pmd.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/crypto/mvsam/rte_mrvl_pmd.c b/drivers/crypto/mvsam/rte_mrvl_pmd.c
> index 193b7fb931..a824719fb0 100644
> --- a/drivers/crypto/mvsam/rte_mrvl_pmd.c
> +++ b/drivers/crypto/mvsam/rte_mrvl_pmd.c
> @@ -60,7 +60,7 @@ struct __rte_aligned(32) cipher_params_mapping {
> struct __rte_aligned(32) auth_params_mapping {
> enum algo_supported supported; /**< On/off switch */
> enum sam_auth_alg auth_alg; /**< Auth algorithm */
> -}
> +};
already applied i see, but acking anyway.
sorry for the trouble.
Acked-by: Tyler Retzlaff <roretzla@linux.microsoft.com>
>
> /**
> * Map of supported cipher algorithms.
> --
> 2.45.0
@@ -60,7 +60,7 @@ struct __rte_aligned(32) cipher_params_mapping {
struct __rte_aligned(32) auth_params_mapping {
enum algo_supported supported; /**< On/off switch */
enum sam_auth_alg auth_alg; /**< Auth algorithm */
-}
+};
/**
* Map of supported cipher algorithms.