From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id D0B4B43FFC; Thu, 16 May 2024 18:19:22 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 57D064029B; Thu, 16 May 2024 18:19:22 +0200 (CEST) Received: from linux.microsoft.com (linux.microsoft.com [13.77.154.182]) by mails.dpdk.org (Postfix) with ESMTP id 1436840261 for ; Thu, 16 May 2024 18:19:20 +0200 (CEST) Received: by linux.microsoft.com (Postfix, from userid 1086) id 12A0E20B915A; Thu, 16 May 2024 09:19:19 -0700 (PDT) DKIM-Filter: OpenDKIM Filter v2.11.0 linux.microsoft.com 12A0E20B915A DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.microsoft.com; s=default; t=1715876359; bh=XoMAJzXuISzkuk+uTD0x8jhf7nRuiNYjGapub/n2weY=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=jR0otYEoj/Q6seMazMq+zPC1Vvfbu06L5xE/l3h+mEk6UCY1Ng1M7zDbt5BVSl8pw SYxexibIFE6F+TAPiEG5OIjLx9acoGeIWL1OaqPgZhM92i0b8IL9qWr2ZOELb65HWG qrh9RhkXseZbDT/XhwrTN6fS6AdYdKt9Uzdc2KY4= Date: Thu, 16 May 2024 09:19:19 -0700 From: Tyler Retzlaff To: Thomas Monjalon Cc: dev@dpdk.org, david.marchand@redhat.com, Michael Shamis , Liron Himi , Morten =?iso-8859-1?Q?Br=F8rup?= Subject: Re: [PATCH] crypto/mvsam: fix build Message-ID: <20240516161919.GA23478@linuxonhyperv3.guj3yctzbm1etfxqx2vob5hsef.xx.internal.cloudapp.net> References: <20240515163415.268786-1-thomas@monjalon.net> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20240515163415.268786-1-thomas@monjalon.net> User-Agent: Mutt/1.5.21 (2010-09-15) X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org 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 > --- > 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 > > /** > * Map of supported cipher algorithms. > -- > 2.45.0