From patchwork Mon Mar 15 10:34:06 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Tejasree Kondoj X-Patchwork-Id: 89111 X-Patchwork-Delegate: gakhil@marvell.com Return-Path: X-Original-To: patchwork@inbox.dpdk.org Delivered-To: patchwork@inbox.dpdk.org Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id CCEEFA054F; Mon, 15 Mar 2021 10:37:25 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 535492425F0; Mon, 15 Mar 2021 10:37:25 +0100 (CET) Received: from mx0b-0016f401.pphosted.com (mx0a-0016f401.pphosted.com [67.231.148.174]) by mails.dpdk.org (Postfix) with ESMTP id F3C704003C for ; Mon, 15 Mar 2021 10:37:23 +0100 (CET) Received: from pps.filterd (m0045849.ppops.net [127.0.0.1]) by mx0a-0016f401.pphosted.com (8.16.0.43/8.16.0.43) with SMTP id 12F9R2Pv017424; Mon, 15 Mar 2021 02:37:23 -0700 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=marvell.com; h=from : to : cc : subject : date : message-id : mime-version : content-transfer-encoding : content-type; s=pfpt0220; bh=nwpKaadn2QzwaBVU1k5QSAmpVAB612ZLdJSLJ5N7/EM=; b=bQqGOj2tynL6RkQACHOixTULZrKQcrSoLQLkGatLJw2v+4nJWDqabX8xhjqAlxbnFLr/ Hpz022dcj/zRr7tUTUpEnKw5QR7lQP37Nv0cQqieQktXd8sFxd/xGaiPm/aTGVVBPTCv E+gcac8SU24UHG+EEpIYFk1mYVmy8pNZsgKVFwLB/PbdKZICBv3GbKmLwawkA9tyeF5L +EzmpZk7nuJxHRV0jSCkVEXzmA6r4qklG/Xff6u7MnUmUzoPgGD/v4YVwZ2Fo2AHcQBn WG9RUQE/JjxTF73zMbNZHwvm32FlPbie7FcdTrxkYYfqaETbLIOH40skgw1i9eFjbIzY SQ== Received: from dc6wp-exch01.marvell.com ([4.21.29.232]) by mx0a-0016f401.pphosted.com with ESMTP id 378umtc4sv-1 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-SHA384 bits=256 verify=NOT); Mon, 15 Mar 2021 02:37:23 -0700 Received: from DC6WP-EXCH01.marvell.com (10.76.176.21) by DC6WP-EXCH01.marvell.com (10.76.176.21) with Microsoft SMTP Server (TLS) id 15.0.1497.2; Mon, 15 Mar 2021 05:37:21 -0400 Received: from maili.marvell.com (10.76.176.51) by DC6WP-EXCH01.marvell.com (10.76.176.21) with Microsoft SMTP Server id 15.0.1497.2 via Frontend Transport; Mon, 15 Mar 2021 05:37:21 -0400 Received: from hyd1554T5810.caveonetworks.com.com (unknown [10.29.57.11]) by maili.marvell.com (Postfix) with ESMTP id C87FA3F703F; Mon, 15 Mar 2021 02:37:18 -0700 (PDT) From: Tejasree Kondoj To: Akhil Goyal , Radu Nicolau CC: Tejasree Kondoj , Anoob Joseph , Ankur Dwivedi , Jerin Jacob , Date: Mon, 15 Mar 2021 16:04:06 +0530 Message-ID: <20210315103406.31302-1-ktejasree@marvell.com> X-Mailer: git-send-email 2.27.0 MIME-Version: 1.0 X-Proofpoint-Virus-Version: vendor=fsecure engine=2.50.10434:6.0.369, 18.0.761 definitions=2021-03-15_03:2021-03-15, 2021-03-15 signatures=0 Subject: [dpdk-dev] [PATCH] crypto/octeontx2: remove redundant code 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 Sender: "dev" Removing redundant field in a union. Signed-off-by: Tejasree Kondoj Acked-by: Anoob Joseph --- drivers/crypto/octeontx2/otx2_ipsec_po.h | 1 - 1 file changed, 1 deletion(-) diff --git a/drivers/crypto/octeontx2/otx2_ipsec_po.h b/drivers/crypto/octeontx2/otx2_ipsec_po.h index 8a672a38ea..eda9f19738 100644 --- a/drivers/crypto/octeontx2/otx2_ipsec_po.h +++ b/drivers/crypto/octeontx2/otx2_ipsec_po.h @@ -203,7 +203,6 @@ struct otx2_ipsec_po_out_sa { /* w8-w55 */ union { - uint8_t raw[384]; struct { struct otx2_ipsec_po_ip_template template; } aes_gcm;