From patchwork Fri Apr 12 07:03:22 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Ayuj Verma X-Patchwork-Id: 52664 X-Patchwork-Delegate: gakhil@marvell.com Return-Path: X-Original-To: patchwork@dpdk.org Delivered-To: patchwork@dpdk.org Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 672B64C93; Fri, 12 Apr 2019 09:03:47 +0200 (CEST) Received: from mx0b-0016f401.pphosted.com (mx0a-0016f401.pphosted.com [67.231.148.174]) by dpdk.org (Postfix) with ESMTP id B122A2BCE for ; Fri, 12 Apr 2019 09:03:45 +0200 (CEST) Received: from pps.filterd (m0045849.ppops.net [127.0.0.1]) by mx0a-0016f401.pphosted.com (8.16.0.27/8.16.0.27) with SMTP id x3C6sv6c028599; Fri, 12 Apr 2019 00:03:45 -0700 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=marvell.com; h=from : to : cc : subject : date : message-id : in-reply-to : references : mime-version : content-type; s=pfpt0818; bh=NYLIElLf4IHRSNovM1X2qxs0xRtie7gOEzLEaSni1LM=; b=PheDWo7xXyzOrp1FH2OGH3dX+zL/FuxJxdieS65Ayh3qa2ULnQtmy0TfrIdVx5MvUyFM JFn/m+0lgD7oeMsmYVMy1AJqedbuwgTe7YJPQFB5aWZEm4lBEm5twJyF2zygkrIC27pS aa/CHHSuKCDmZaBAYrtho97sl6G0qRbSS7Z8GKeMfgC9OvLAnSzbP821yhigaO2PdcD5 FY8dTgienYKRbWI2XrvkpgEiXIDmUauChox7f1jB32uiQaKSeB8B99SecLfhLFT1lwo4 0jsRQ3cxV1v0LD9KpC07gCNG7ft6hxQGti/kuQRkadr+/480R8ds1Sf4+CPgS8ookTp0 WA== Received: from sc-exch03.marvell.com ([199.233.58.183]) by mx0a-0016f401.pphosted.com with ESMTP id 2rtnqcg20w-1 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-SHA384 bits=256 verify=NOT); Fri, 12 Apr 2019 00:03:44 -0700 Received: from SC-EXCH03.marvell.com (10.93.176.83) by SC-EXCH03.marvell.com (10.93.176.83) with Microsoft SMTP Server (TLS) id 15.0.1367.3; Fri, 12 Apr 2019 00:03:44 -0700 Received: from maili.marvell.com (10.93.176.43) by SC-EXCH03.marvell.com (10.93.176.83) with Microsoft SMTP Server id 15.0.1367.3 via Frontend Transport; Fri, 12 Apr 2019 00:03:44 -0700 Received: from localhost.marvell.com (unknown [10.28.10.76]) by maili.marvell.com (Postfix) with ESMTP id 779FE3F703F; Fri, 12 Apr 2019 00:03:41 -0700 (PDT) From: Ayuj Verma To: , , CC: , , , , , Ayuj Verma Date: Fri, 12 Apr 2019 12:33:22 +0530 Message-ID: <1555052602-19155-2-git-send-email-ayverma@marvell.com> X-Mailer: git-send-email 1.8.3.1 In-Reply-To: <1555052602-19155-1-git-send-email-ayverma@marvell.com> References: <1555052602-19155-1-git-send-email-ayverma@marvell.com> MIME-Version: 1.0 X-Proofpoint-Virus-Version: vendor=fsecure engine=2.50.10434:, , definitions=2019-04-12_05:, , signatures=0 Subject: [dpdk-dev] [PATCH v1] lib/crypto: fix alphabetical ordering of headers X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 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" include rte_crypto_sym.h in rte_crypto_asym.h in place of including it in rte_crypto.h. Signed-off-by: Ayuj Verma Signed-off-by: Shally Verma --- lib/librte_cryptodev/rte_crypto.h | 1 - lib/librte_cryptodev/rte_crypto_asym.h | 2 ++ 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/librte_cryptodev/rte_crypto.h b/lib/librte_cryptodev/rte_crypto.h index fd5ef3a..17dccdf 100644 --- a/lib/librte_cryptodev/rte_crypto.h +++ b/lib/librte_cryptodev/rte_crypto.h @@ -22,7 +22,6 @@ #include #include -#include "rte_crypto_sym.h" #include "rte_crypto_asym.h" /** Crypto operation types */ diff --git a/lib/librte_cryptodev/rte_crypto_asym.h b/lib/librte_cryptodev/rte_crypto_asym.h index 5e43620..a55923a 100644 --- a/lib/librte_cryptodev/rte_crypto_asym.h +++ b/lib/librte_cryptodev/rte_crypto_asym.h @@ -25,6 +25,8 @@ #include #include +#include "rte_crypto_sym.h" + typedef struct rte_crypto_param_t { uint8_t *data; /**< pointer to buffer holding data */