On Wednesday 02 May 2018 10:45 PM, Nipun Gupta wrote:
There are two API's which are required by NXP specific Command Interface
Application (AIOP CMDIF). This patch exposes these two API's.
Signed-off-by: Nipun Gupta <nipun.gu...@nxp.com>
---
doc/api/doxy-api-index.md | 1 +
doc/api/doxy-api.conf | 1 +
drivers/mempool/dpaa2/Makefile | 2 +
drivers/mempool/dpaa2/dpaa2_hw_mempool.c | 30 ++++++++++++
drivers/mempool/dpaa2/rte_dpaa2_mempool.h | 53 ++++++++++++++++++++++
.../mempool/dpaa2/rte_mempool_dpaa2_version.map | 8 ++++
6 files changed, 95 insertions(+)
create mode 100644 drivers/mempool/dpaa2/rte_dpaa2_mempool.h
diff --git a/doc/api/doxy-api-index.md b/doc/api/doxy-api-index.md
index 437d903..12d3e5c 100644
--- a/doc/api/doxy-api-index.md
+++ b/doc/api/doxy-api-index.md
@@ -38,6 +38,7 @@ The public API headers are grouped by topics:
[i40e] (@ref rte_pmd_i40e.h),
[bnxt] (@ref rte_pmd_bnxt.h),
[dpaa] (@ref rte_pmd_dpaa.h),
+ [dpaa2] (@ref rte_dpaa2_mempool.h),
[dpaa2_qdma] (@ref rte_pmd_dpaa2_qdma.h),
[crypto_scheduler] (@ref rte_cryptodev_scheduler.h)
diff --git a/doc/api/doxy-api.conf b/doc/api/doxy-api.conf
index 88bee03..71fb6b2 100644
--- a/doc/api/doxy-api.conf
+++ b/doc/api/doxy-api.conf
@@ -31,6 +31,7 @@
PROJECT_NAME = DPDK
INPUT = doc/api/doxy-api-index.md \
drivers/crypto/scheduler \
+ drivers/mempool/dpaa2 \
drivers/net/bnxt \
drivers/net/bonding \
drivers/net/dpaa \
Nipun,
Above doxygen change is appearing under 'device-specific' with 'dpaa2'
as tag. I think it should be 'dpaa2_mempool'.
-
Shreyansh