From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id 1DEC6A00C5 for ; Tue, 7 Jul 2020 10:58:25 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 060381DB94; Tue, 7 Jul 2020 10:58:25 +0200 (CEST) Received: from inva021.nxp.com (inva021.nxp.com [92.121.34.21]) by dpdk.org (Postfix) with ESMTP id 7B5851DB49; Tue, 7 Jul 2020 10:58:22 +0200 (CEST) Received: from inva021.nxp.com (localhost [127.0.0.1]) by inva021.eu-rdc02.nxp.com (Postfix) with ESMTP id 552DD201613; Tue, 7 Jul 2020 10:58:22 +0200 (CEST) Received: from invc005.ap-rdc01.nxp.com (invc005.ap-rdc01.nxp.com [165.114.16.14]) by inva021.eu-rdc02.nxp.com (Postfix) with ESMTP id 829052008CD; Tue, 7 Jul 2020 10:58:19 +0200 (CEST) Received: from bf-netperf1.ap.freescale.net (bf-netperf1.ap.freescale.net [10.232.133.63]) by invc005.ap-rdc01.nxp.com (Postfix) with ESMTP id 82800402A8; Tue, 7 Jul 2020 16:58:15 +0800 (SGT) From: Hemant Agrawal To: dev@dpdk.org Cc: thomas@monjalon.net, bruce.richardson@intel.com, david.marchand@redhat.com, stable@dpdk.org, Hemant Agrawal Date: Tue, 7 Jul 2020 14:24:07 +0530 Message-Id: <20200707085407.12555-1-hemant.agrawal@nxp.com> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20200707065350.12116-1-hemant.agrawal@nxp.com> References: <20200707065350.12116-1-hemant.agrawal@nxp.com> X-Virus-Scanned: ClamAV using ClamSMTP Subject: [dpdk-stable] [PATCH v2] rawdev: fix to remove EXPERIMENTAL from comment X-BeenThere: stable@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches for DPDK stable branches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: stable-bounces@dpdk.org Sender: "stable" The experimental tags were removed, but the comment is still having API classification as EXPERIMENTAL Fixes: 931cc531aad2 ("rawdev: remove experimental tag") Cc: stable@dpdk.org Signed-off-by: Hemant Agrawal --- MAINTAINERS | 2 +- lib/librte_rawdev/rte_rawdev.h | 3 --- lib/librte_rawdev/rte_rawdev_pmd.h | 3 --- 3 files changed, 1 insertion(+), 7 deletions(-) diff --git a/MAINTAINERS b/MAINTAINERS index 27fcd6d648..6ba02d73aa 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -490,7 +490,7 @@ F: lib/librte_eventdev/*crypto_adapter* F: app/test/test_event_crypto_adapter.c F: doc/guides/prog_guide/event_crypto_adapter.rst -Raw device API - EXPERIMENTAL +Raw device API M: Nipun Gupta M: Hemant Agrawal F: lib/librte_rawdev/ diff --git a/lib/librte_rawdev/rte_rawdev.h b/lib/librte_rawdev/rte_rawdev.h index ed011ca228..7a1f3213e9 100644 --- a/lib/librte_rawdev/rte_rawdev.h +++ b/lib/librte_rawdev/rte_rawdev.h @@ -12,9 +12,6 @@ * * This API allow applications to configure and use generic devices having * no specific type already available in DPDK. - * - * @warning - * @b EXPERIMENTAL: this API may change without prior notice */ #ifdef __cplusplus diff --git a/lib/librte_rawdev/rte_rawdev_pmd.h b/lib/librte_rawdev/rte_rawdev_pmd.h index cb3555ab50..4395a2182d 100644 --- a/lib/librte_rawdev/rte_rawdev_pmd.h +++ b/lib/librte_rawdev/rte_rawdev_pmd.h @@ -11,9 +11,6 @@ * @note * Driver facing APIs for a raw device. These are not to be called directly by * any application. - * - * @warning - * @b EXPERIMENTAL: this API may change without prior notice */ #ifdef __cplusplus -- 2.17.1