]> git.droids-corp.org - dpdk.git/commitdiff
baseband/fpga_lte_fec: add public API to map file
authorBruce Richardson <bruce.richardson@intel.com>
Fri, 4 Oct 2019 17:19:12 +0000 (18:19 +0100)
committerAkhil Goyal <akhil.goyal@nxp.com>
Wed, 9 Oct 2019 09:50:12 +0000 (11:50 +0200)
To allow shared library builds of e.g. test-bbdev app, we need to export
the configure function. Since this needs to be exported as experimental by
default, we update the header file to add the experimental tag there too.

Signed-off-by: Bruce Richardson <bruce.richardson@intel.com>
drivers/baseband/fpga_lte_fec/fpga_lte_fec.h
drivers/baseband/fpga_lte_fec/rte_pmd_bbdev_fpga_lte_fec_version.map

index 9ae8b1226f82262aa0846ebc96bdb3c48fcbc278..b2e423c87cb8c77e34ac98d4026f2b1dcf0774e2 100644 (file)
@@ -62,6 +62,7 @@ struct fpga_lte_fec_conf {
  * @return
  *   Zero on success, negative value on failure.
  */
+__rte_experimental
 int
 fpga_lte_fec_configure(const char *dev_name,
                const struct fpga_lte_fec_conf *conf);
index e923270751c5a4da6099f1cb6de0118af879ce91..f64b0f9c27ac94bac9e1f1e564f071dea3dcb8e2 100644 (file)
@@ -1,3 +1,10 @@
 DPDK_19.08 {
     local: *;
 };
+
+EXPERIMENTAL {
+    global:
+
+    fpga_lte_fec_configure;
+
+};